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>2019-03-17 02:28:08 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-17 02:34:59 +0300
commitcc5bdf02932438e61b8fb41280d4754549a093b4 (patch)
treec20f788571779ed5069d51b71c0daef678425393 /source/blender/makesdna/DNA_brush_types.h
parentcf5097d71f17356810f04e052325792fca77de55 (diff)
Cleanup: rename DEPRECATED to UNUSED
While the flags have been deprecated they're currently unused. Rename for clarity.
Diffstat (limited to 'source/blender/makesdna/DNA_brush_types.h')
-rw-r--r--source/blender/makesdna/DNA_brush_types.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/makesdna/DNA_brush_types.h b/source/blender/makesdna/DNA_brush_types.h
index b367c141581..5fec1528e37 100644
--- a/source/blender/makesdna/DNA_brush_types.h
+++ b/source/blender/makesdna/DNA_brush_types.h
@@ -356,13 +356,13 @@ typedef enum eBrushGradientSourceFill {
/* Brush.flag */
typedef enum eBrushFlags {
BRUSH_AIRBRUSH = (1 << 0),
- BRUSH_FLAG_DEPRECATED_1 = (1 << 1), /* cleared */
+ BRUSH_FLAG_UNUSED_1 = (1 << 1), /* cleared */
BRUSH_ALPHA_PRESSURE = (1 << 2),
BRUSH_SIZE_PRESSURE = (1 << 3),
BRUSH_JITTER_PRESSURE = (1 << 4),
BRUSH_SPACING_PRESSURE = (1 << 5),
- BRUSH_FLAG_DEPRECATED_6 = (1 << 6), /* cleared */
- BRUSH_FLAG_DEPRECATED_7 = (1 << 7), /* cleared */
+ BRUSH_FLAG_UNUSED_6 = (1 << 6), /* cleared */
+ BRUSH_FLAG_UNUSED_7 = (1 << 7), /* cleared */
BRUSH_ANCHORED = (1 << 8),
BRUSH_DIR_IN = (1 << 9),
BRUSH_SPACE = (1 << 10),
@@ -372,7 +372,7 @@ typedef enum eBrushFlags {
BRUSH_LOCK_ALPHA = (1 << 14),
BRUSH_ORIGINAL_NORMAL = (1 << 15),
BRUSH_OFFSET_PRESSURE = (1 << 16),
- BRUSH_FLAG_DEPRECATED_17 = (1 << 17), /* cleared */
+ BRUSH_FLAG_UNUSED_17 = (1 << 17), /* cleared */
BRUSH_SPACE_ATTEN = (1 << 18),
BRUSH_ADAPTIVE_SPACE = (1 << 19),
BRUSH_LOCK_SIZE = (1 << 20),