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>2018-12-17 02:25:40 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-17 02:25:40 +0300
commit9149e8942107343fb31639406124428e6ff1a029 (patch)
treed33495dc55c5d50206437598ddcfffa24843be61 /source/blender/makesdna/DNA_modifier_types.h
parentea33b90a1bf21061ab8a862d862db4dea048b28c (diff)
parent98f43ba3e4cb0a26eb62ea98e27a313265f8948c (diff)
Merge branch 'master' into blende2.8
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 345958ce397..748c68c3fd4 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -1306,8 +1306,8 @@ enum {
/* Remesh modifier */
typedef enum eRemeshModifierFlags {
- MOD_REMESH_FLOOD_FILL = 1,
- MOD_REMESH_SMOOTH_SHADING = 2,
+ MOD_REMESH_FLOOD_FILL = (1 << 0),
+ MOD_REMESH_SMOOTH_SHADING = (1 << 1),
} RemeshModifierFlags;
typedef enum eRemeshModifierMode {