Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/src/editview.c')
-rw-r--r--source/blender/src/editview.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/src/editview.c b/source/blender/src/editview.c
index f95b56fe5b0..a3fcad7885c 100644
--- a/source/blender/src/editview.c
+++ b/source/blender/src/editview.c
@@ -89,7 +89,6 @@
#include "BIF_gl.h"
#include "BIF_glutil.h"
#include "BIF_interface.h"
-#include "BIF_keyframing.h"
#include "BIF_mywindow.h"
#include "BIF_previewrender.h" /* use only so fly mode can preview when its done */
#include "BIF_space.h"
@@ -1632,7 +1631,7 @@ void mouse_select(void)
/* ------------------------------------------------------------------------- */
-int edge_inside_circle(short centx, short centy, short rad, short x1, short y1, short x2, short y2)
+static int edge_inside_circle(short centx, short centy, short rad, short x1, short y1, short x2, short y2)
{
int radsq= rad*rad;
float v1[2], v2[2], v3[2];
@@ -2248,7 +2247,7 @@ void view3d_border_zoom(void)
/* Get Z Depths, needed for perspective, nice for ortho */
bgl_get_mats(&mats);
- draw_depth(curarea, (void *)v3d, NULL);
+ draw_depth(curarea, (void *)v3d);
/* force updating */
if (v3d->depths) {