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>2020-02-20 02:21:23 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-02-20 04:19:55 +0300
commit5dcb6fb22f3f0a8a5b2b9f0aa5479a29d635ddbe (patch)
tree51176b3fb906ad7fdc3b426556db84775fe66cd5 /source/blender/makesdna/DNA_modifier_types.h
parenta74f0dc0e306d79d8a6de5277538d7333132fc34 (diff)
Cleanup: unused enums
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h16
1 files changed, 3 insertions, 13 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 2d625e7006b..572a9fd76ba 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -425,7 +425,7 @@ enum {
MOD_BEVEL_WEIGHT = (1 << 4),
MOD_BEVEL_VGROUP = (1 << 5),
MOD_BEVEL_CUSTOM_PROFILE = (1 << 7),
- MOD_BEVEL_SAMPLE_STRAIGHT = (1 << 8),
+ /* MOD_BEVEL_SAMPLE_STRAIGHT = (1 << 8), */ /* UNUSED */
/* unused = (1 << 9), */
/* unused = (1 << 10), */
/* unused = (1 << 11), */
@@ -559,11 +559,6 @@ typedef struct UVProjectModifierData {
#define MOD_UVPROJECT_MAXPROJECTORS 10
-/* UVProjectModifierData->flags */
-enum {
- MOD_UVPROJECT_OVERRIDEIMAGE = (1 << 0),
-};
-
typedef struct DecimateModifierData {
ModifierData modifier;
@@ -916,11 +911,6 @@ enum {
MOD_MDEF_DYNAMIC_BIND = (1 << 1),
};
-enum {
- MOD_MDEF_VOLUME = 0,
- MOD_MDEF_SURFACE = 1,
-};
-
typedef struct ParticleSystemModifierData {
ModifierData modifier;
@@ -2034,8 +2024,8 @@ enum {
/* This indicates "do bind on next modifier evaluation" as well as "is bound". */
MOD_SDEF_BIND = (1 << 0),
- MOD_SDEF_USES_LOOPTRI = (1 << 1),
- MOD_SDEF_HAS_CONCAVE = (1 << 2),
+ /* MOD_SDEF_USES_LOOPTRI = (1 << 1), */ /* UNUSED */
+ /* MOD_SDEF_HAS_CONCAVE = (1 << 2), */ /* UNUSED */
};
/* Surface Deform vertex bind modes */