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:
authorNicholas Bishop <nicholasbishop@gmail.com>2012-01-12 22:08:07 +0400
committerNicholas Bishop <nicholasbishop@gmail.com>2012-01-12 22:08:07 +0400
commit7889905888e70996b8fce714d71114561d3f40be (patch)
tree1b1ce21a5ffe42297454cc89cf8a4736c46b3947 /source/blender/makesdna
parent9fe88a8488ad9e209956f047496c838f38562c19 (diff)
Rename the sculpt/paint unified flags for better consistency, no functional changes
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_scene_types.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h
index 9f3353078c2..743458f62c8 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -835,15 +835,17 @@ typedef struct UnifiedPaintSettings {
} UnifiedPaintSettings;
typedef enum {
- SCULPT_PAINT_USE_UNIFIED_SIZE = (1<<0),
- SCULPT_PAINT_USE_UNIFIED_ALPHA = (1<<1),
+ UNIFIED_PAINT_SIZE = (1<<0),
+ UNIFIED_PAINT_ALPHA = (1<<1),
- /* only used if unified size is enabled */
- SCULPT_PAINT_UNIFIED_LOCK_BRUSH_SIZE = (1<<2),
- SCULPT_PAINT_UNIFIED_SIZE_PRESSURE = (1<<3),
+ /* only used if unified size is enabled, mirros the brush flags
+ BRUSH_LOCK_SIZE and BRUSH_SIZE_PRESSURE */
+ UNIFIED_PAINT_BRUSH_LOCK_SIZE = (1<<2),
+ UNIFIED_PAINT_BRUSH_SIZE_PRESSURE = (1<<3),
- /* only used if unified alpha is enabled */
- SCULPT_PAINT_UNIFIED_ALPHA_PRESSURE = (1<<4)
+ /* only used if unified alpha is enabled, mirrors the brush flag
+ BRUSH_ALPHA_PRESSURE */
+ UNIFIED_PAINT_BRUSH_ALPHA_PRESSURE = (1<<4)
} UnifiedPaintSettingsFlags;
/* *************************************************************** */