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/editors/include/ED_view3d.h')
-rw-r--r--source/blender/editors/include/ED_view3d.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/editors/include/ED_view3d.h b/source/blender/editors/include/ED_view3d.h
index 52aa5f56fee..f475eeee335 100644
--- a/source/blender/editors/include/ED_view3d.h
+++ b/source/blender/editors/include/ED_view3d.h
@@ -30,7 +30,6 @@ struct Depsgraph;
struct EditBone;
struct GPUSelectResult;
struct ID;
-struct MVert;
struct Main;
struct MetaElem;
struct Nurb;
@@ -355,11 +354,12 @@ void ED_view3d_cursor_snap_draw_util(struct RegionView3D *rv3d,
/* foreach iterators */
-void meshobject_foreachScreenVert(
- struct ViewContext *vc,
- void (*func)(void *userData, struct MVert *eve, const float screen_co[2], int index),
- void *userData,
- eV3DProjTest clip_flag);
+void meshobject_foreachScreenVert(struct ViewContext *vc,
+ void (*func)(void *userData,
+ const float screen_co[2],
+ int index),
+ void *userData,
+ eV3DProjTest clip_flag);
void mesh_foreachScreenVert(
struct ViewContext *vc,
void (*func)(void *userData, struct BMVert *eve, const float screen_co[2], int index),