From a16e5b8efa8be09362d5e56812221db4705b0e26 Mon Sep 17 00:00:00 2001 From: Sebastian Parborg Date: Thu, 27 Sep 2018 15:54:10 +0200 Subject: Cleanup: remove unused DerivedMesh code. Differential Revision: https://developer.blender.org/D3736 --- source/blender/editors/sculpt_paint/paint_intern.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/sculpt_paint/paint_intern.h') diff --git a/source/blender/editors/sculpt_paint/paint_intern.h b/source/blender/editors/sculpt_paint/paint_intern.h index 7d3049434d6..c74dc252d0c 100644 --- a/source/blender/editors/sculpt_paint/paint_intern.h +++ b/source/blender/editors/sculpt_paint/paint_intern.h @@ -54,10 +54,14 @@ struct wmEvent; struct wmOperator; struct wmOperatorType; struct wmWindowManager; -struct DMCoNo; struct UndoStep; enum ePaintMode; +typedef struct CoNo { + float co[3]; + float no[3]; +} CoNo; + /* paint_stroke.c */ typedef bool (*StrokeGetLocation)(struct bContext *C, float location[3], const float mouse[2]); typedef bool (*StrokeTestStart)(struct bContext *C, struct wmOperator *op, const float mouse[2]); @@ -161,7 +165,7 @@ void PAINT_OT_weight_sample_group(struct wmOperatorType *ot); struct VertProjHandle; struct VertProjHandle *ED_vpaint_proj_handle_create( struct Depsgraph *depsgraph, struct Scene *scene, struct Object *ob, - struct DMCoNo **r_vcosnos); + struct CoNo **r_vcosnos); void ED_vpaint_proj_handle_update( struct Depsgraph *depsgraph, struct VertProjHandle *vp_handle, /* runtime vars */ -- cgit v1.2.3