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:
authorJacques Lucke <jacques@blender.org>2022-03-17 14:42:01 +0300
committerJacques Lucke <jacques@blender.org>2022-03-17 14:42:01 +0300
commit8f68cff01b85bfde18c9442e6a638eda181ee159 (patch)
treeb428494bc8b72e868e07979cc5e9481b5752f65e /source/blender/makesdna/DNA_brush_enums.h
parentdd483215e58f09a8da8de9f79c6da080cdeeb92c (diff)
Cleanup: name enums
Diffstat (limited to 'source/blender/makesdna/DNA_brush_enums.h')
-rw-r--r--source/blender/makesdna/DNA_brush_enums.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_brush_enums.h b/source/blender/makesdna/DNA_brush_enums.h
index f8ffe6a0a47..90763dae600 100644
--- a/source/blender/makesdna/DNA_brush_enums.h
+++ b/source/blender/makesdna/DNA_brush_enums.h
@@ -602,10 +602,10 @@ typedef enum eBlurKernelType {
} eBlurKernelType;
/* Brush.falloff_shape */
-enum {
+typedef enum eBrushFalloffShape {
PAINT_FALLOFF_SHAPE_SPHERE = 0,
PAINT_FALLOFF_SHAPE_TUBE = 1,
-};
+} eBrushFalloffShape;
#define MAX_BRUSH_PIXEL_RADIUS 500
#define GP_MAX_BRUSH_PIXEL_RADIUS 1000