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:
authorCampbell Barton <ideasman42@gmail.com>2018-03-27 08:05:07 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-03-27 08:06:14 +0300
commit3bca1ef26bcbd65f1a9063f2d073c92f83c79b70 (patch)
tree5c34383a2ac947b319f7e819fbd2295414558003 /source/blender/editors/sculpt_paint/paint_intern.h
parenta7aee250b82161592bb673adf59508e759a867f4 (diff)
Cleanup: move paint curve undo into own file
Diffstat (limited to 'source/blender/editors/sculpt_paint/paint_intern.h')
-rw-r--r--source/blender/editors/sculpt_paint/paint_intern.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_intern.h b/source/blender/editors/sculpt_paint/paint_intern.h
index 8a0d1013499..52be4be4c0d 100644
--- a/source/blender/editors/sculpt_paint/paint_intern.h
+++ b/source/blender/editors/sculpt_paint/paint_intern.h
@@ -43,6 +43,7 @@ struct MTex;
struct Object;
struct PaintStroke;
struct Paint;
+struct PaintCurve;
struct PointerRNA;
struct rcti;
struct Scene;
@@ -343,6 +344,9 @@ void PAINTCURVE_OT_slide(struct wmOperatorType *ot);
void PAINTCURVE_OT_draw(struct wmOperatorType *ot);
void PAINTCURVE_OT_cursor(struct wmOperatorType *ot);
+/* paint_curve_undo.c */
+void ED_paintcurve_undo_push(struct bContext *C, struct wmOperator *op, struct PaintCurve *pc);
+
/* image painting blur kernel */
typedef struct {
float *wdata; /* actual kernel */