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/sculpt_paint/paint_intern.h')
-rw-r--r--source/blender/editors/sculpt_paint/paint_intern.h8
1 files changed, 6 insertions, 2 deletions
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 */