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_image_2d.c')
-rw-r--r--source/blender/editors/sculpt_paint/paint_image_2d.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_image_2d.c b/source/blender/editors/sculpt_paint/paint_image_2d.c
index 194b36ac099..fead8a9d990 100644
--- a/source/blender/editors/sculpt_paint/paint_image_2d.c
+++ b/source/blender/editors/sculpt_paint/paint_image_2d.c
@@ -944,7 +944,8 @@ int paint_2d_stroke(void *ps, const int mval[2], float pressure, int eraser)
return redraw;
}
-void *paint_2d_new_stroke(bContext *C, wmOperator *op) {
+void *paint_2d_new_stroke(bContext *C, wmOperator *op)
+{
Scene *scene = CTX_data_scene(C);
ToolSettings *settings = scene->toolsettings;
Brush *brush = paint_brush(&settings->imapaint.paint);
@@ -980,7 +981,8 @@ void *paint_2d_new_stroke(bContext *C, wmOperator *op) {
return s;
}
-void paint_2d_redraw (const bContext *C, void *ps, int final) {
+void paint_2d_redraw (const bContext *C, void *ps, int final)
+{
ImagePaintState *s = ps;
if (final) {
@@ -998,7 +1000,8 @@ void paint_2d_redraw (const bContext *C, void *ps, int final) {
}
}
-void paint_2d_stroke_done(void *ps) {
+void paint_2d_stroke_done(void *ps)
+{
ImagePaintState *s = ps;
paint_2d_canvas_free(s);