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:
authorHans Goudey <h.goudey@me.com>2022-09-14 08:15:31 +0300
committerHans Goudey <h.goudey@me.com>2022-09-14 08:15:31 +0300
commitb9f9800c66472a811dd687195f76602852e41403 (patch)
tree6dc106e8e6de7b573158a55f9ae7435e1e0578cf /source/blender/editors/include
parentc25890dc02ec8e8437058274516d7ca61d594922 (diff)
Compiles, runs in basic situations
Diffstat (limited to 'source/blender/editors/include')
-rw-r--r--source/blender/editors/include/ED_view3d.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/source/blender/editors/include/ED_view3d.h b/source/blender/editors/include/ED_view3d.h
index 9e750bf6b22..6de914452f4 100644
--- a/source/blender/editors/include/ED_view3d.h
+++ b/source/blender/editors/include/ED_view3d.h
@@ -353,11 +353,12 @@ void ED_view3d_cursor_snap_draw_util(struct RegionView3D *rv3d,
/* foreach iterators */
-void meshobject_foreachScreenVert(
- struct ViewContext *vc,
- void (*func)(void *userData, float position[3], 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),