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')
-rw-r--r--source/blender/editors/sculpt_paint/paint_image_undo.c2
-rw-r--r--source/blender/editors/sculpt_paint/paint_ops.c4
-rw-r--r--source/blender/editors/sculpt_paint/paint_vertex_weight_ops.c2
-rw-r--r--source/blender/editors/sculpt_paint/sculpt.c2
4 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_image_undo.c b/source/blender/editors/sculpt_paint/paint_image_undo.c
index e26a4811afc..2baa793d807 100644
--- a/source/blender/editors/sculpt_paint/paint_image_undo.c
+++ b/source/blender/editors/sculpt_paint/paint_image_undo.c
@@ -98,7 +98,7 @@ void image_undo_end_locks(void)
typedef enum {
COPY = 0,
RESTORE = 1,
- RESTORE_COPY = 2
+ RESTORE_COPY = 2,
} CopyMode;
static void undo_copy_tile(UndoImageTile *tile, ImBuf *tmpibuf, ImBuf *ibuf, CopyMode mode)
diff --git a/source/blender/editors/sculpt_paint/paint_ops.c b/source/blender/editors/sculpt_paint/paint_ops.c
index 80911cf202f..7ff9faef1f7 100644
--- a/source/blender/editors/sculpt_paint/paint_ops.c
+++ b/source/blender/editors/sculpt_paint/paint_ops.c
@@ -561,13 +561,13 @@ typedef enum {
typedef enum {
STENCIL_PRIMARY = 0,
- STENCIL_SECONDARY = 1
+ STENCIL_SECONDARY = 1,
} StencilTextureMode;
typedef enum {
STENCIL_CONSTRAINT_X = 1,
- STENCIL_CONSTRAINT_Y = 2
+ STENCIL_CONSTRAINT_Y = 2,
} StencilConstraint;
typedef struct {
diff --git a/source/blender/editors/sculpt_paint/paint_vertex_weight_ops.c b/source/blender/editors/sculpt_paint/paint_vertex_weight_ops.c
index fe4472c76fe..7100bf33a47 100644
--- a/source/blender/editors/sculpt_paint/paint_vertex_weight_ops.c
+++ b/source/blender/editors/sculpt_paint/paint_vertex_weight_ops.c
@@ -544,7 +544,7 @@ typedef struct WPGradient_vertStore {
float weight_orig;
enum {
VGRAD_STORE_NOP = 0,
- VGRAD_STORE_DW_EXIST = (1 << 0)
+ VGRAD_STORE_DW_EXIST = (1 << 0),
} flag;
} WPGradient_vertStore;
diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index 4081f46708d..53c7d4aebbd 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -171,7 +171,7 @@ static bool sculpt_brush_needs_rake_rotation(const Brush *brush)
typedef enum StrokeFlags {
CLIP_X = 1,
CLIP_Y = 2,
- CLIP_Z = 4
+ CLIP_Z = 4,
} StrokeFlags;
/************** Access to original unmodified vertex data *************/