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-10-10 13:39:38 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-10-10 14:04:51 +0300
commitd9a43a107f60b1906b7e96d3b56270987c6c0b2e (patch)
tree4989ebf04f5c0333cde6e90d919d700ff634c542
parent3fe98a473ccb610c3832783cd8be8498d7e557e8 (diff)
Cleanup: remove unused Modifier stackindex struct member
-rw-r--r--source/blender/makesdna/DNA_gpencil_modifier_types.h2
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h2
-rw-r--r--source/blender/makesdna/DNA_shader_fx_types.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_gpencil_modifier_types.h b/source/blender/makesdna/DNA_gpencil_modifier_types.h
index bf268ae7c2d..7e2ec8b6c65 100644
--- a/source/blender/makesdna/DNA_gpencil_modifier_types.h
+++ b/source/blender/makesdna/DNA_gpencil_modifier_types.h
@@ -70,7 +70,7 @@ typedef struct GpencilModifierData {
struct GpencilModifierData *next, *prev;
int type, mode;
- int stackindex;
+ char _pad0[4];
short flag;
short ui_expand_flag;
/** MAX_NAME. */
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 3a3aa106dc0..7a13b9f4852 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -116,7 +116,7 @@ typedef struct ModifierData {
struct ModifierData *next, *prev;
int type, mode;
- int stackindex;
+ char _pad0[4];
short flag;
/* An "expand" bit for each of the modifier's (sub)panels. */
short ui_expand_flag;
diff --git a/source/blender/makesdna/DNA_shader_fx_types.h b/source/blender/makesdna/DNA_shader_fx_types.h
index 56caac51b94..5bb78edb280 100644
--- a/source/blender/makesdna/DNA_shader_fx_types.h
+++ b/source/blender/makesdna/DNA_shader_fx_types.h
@@ -61,7 +61,7 @@ typedef struct ShaderFxData {
struct ShaderFxData *next, *prev;
int type, mode;
- int stackindex;
+ char _pad0[4];
short flag;
/* Expansion for shader effect panels and sub-panels. */
short ui_expand_flag;