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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-12-22 00:16:41 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-12-22 00:16:41 +0400
commita183aa6c6794a01d4fe633ca6fb732c8d7a61826 (patch)
tree15e3ed54dde54f7886259e35b23f75c5dfd06da5 /source
parentd5263c37faf73d0f6cc2466ac0806fef972119fb (diff)
error in last commit, flag names.
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h6
-rw-r--r--source/blender/makesrna/intern/rna_modifier.c6
-rw-r--r--source/blender/modifiers/intern/MOD_wireframe.c8
3 files changed, 10 insertions, 10 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index f0573338585..e9eab548c33 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -1337,9 +1337,9 @@ enum {
MOD_WIREFRAME_INVERT_VGROUP = (1 << 0),
MOD_WIREFRAME_REPLACE = (1 << 1),
MOD_WIREFRAME_BOUNDARY = (1 << 2),
- MOD_MESHCACHE_OFS_EVEN = (1 << 3),
- MOD_MESHCACHE_OFS_RELATIVE = (1 << 4),
- MOD_MESHCACHE_CREASE = (1 << 5),
+ MOD_WIREFRAME_OFS_EVEN = (1 << 3),
+ MOD_WIREFRAME_OFS_RELATIVE = (1 << 4),
+ MOD_WIREFRAME_CREASE = (1 << 5),
};
diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c
index 04055bf0a53..84ee2b1402e 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -3753,17 +3753,17 @@ static void rna_def_modifier_wireframe(BlenderRNA *brna)
RNA_def_property_update(prop, 0, "rna_Modifier_update");
prop = RNA_def_property(srna, "use_even_offset", PROP_BOOLEAN, PROP_NONE);
- RNA_def_property_boolean_sdna(prop, NULL, "flag", MOD_MESHCACHE_OFS_EVEN);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", MOD_WIREFRAME_OFS_EVEN);
RNA_def_property_ui_text(prop, "Offset Even", "Scale the offset to give more even thickness");
RNA_def_property_update(prop, 0, "rna_Modifier_update");
prop = RNA_def_property(srna, "use_relative_offset", PROP_BOOLEAN, PROP_NONE);
- RNA_def_property_boolean_sdna(prop, NULL, "flag", MOD_MESHCACHE_OFS_RELATIVE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", MOD_WIREFRAME_OFS_RELATIVE);
RNA_def_property_ui_text(prop, "Offset Relative", "Scale the offset by surrounding geometry");
RNA_def_property_update(prop, 0, "rna_Modifier_update");
prop = RNA_def_property(srna, "use_crease", PROP_BOOLEAN, PROP_NONE);
- RNA_def_property_boolean_sdna(prop, NULL, "flag", MOD_MESHCACHE_CREASE);
+ RNA_def_property_boolean_sdna(prop, NULL, "flag", MOD_WIREFRAME_CREASE);
RNA_def_property_ui_text(prop, "Offset Relative", "Crease hub edges for improved subsurf");
RNA_def_property_update(prop, 0, "rna_Modifier_update");
diff --git a/source/blender/modifiers/intern/MOD_wireframe.c b/source/blender/modifiers/intern/MOD_wireframe.c
index 371c8d62590..bcef1931a9b 100644
--- a/source/blender/modifiers/intern/MOD_wireframe.c
+++ b/source/blender/modifiers/intern/MOD_wireframe.c
@@ -45,7 +45,7 @@ static void initData(ModifierData *md)
{
WireframeModifierData *wmd = (WireframeModifierData *)md;
wmd->offset = 0.02f;
- wmd->flag = MOD_WIREFRAME_REPLACE | MOD_MESHCACHE_OFS_EVEN;
+ wmd->flag = MOD_WIREFRAME_REPLACE | MOD_WIREFRAME_OFS_EVEN;
wmd->crease_weight = 1.0f;
}
@@ -89,9 +89,9 @@ static DerivedMesh* WireframeModifier_do( WireframeModifierData *wmd, Object *ob
wmd->offset, wmd->offset_fac, wmd->offset_fac_vg,
(wmd->flag & MOD_WIREFRAME_REPLACE) != 0,
(wmd->flag & MOD_WIREFRAME_BOUNDARY) != 0,
- (wmd->flag & MOD_MESHCACHE_OFS_EVEN) != 0,
- (wmd->flag & MOD_MESHCACHE_OFS_RELATIVE) != 0,
- (wmd->flag & MOD_MESHCACHE_CREASE) != 0,
+ (wmd->flag & MOD_WIREFRAME_OFS_EVEN) != 0,
+ (wmd->flag & MOD_WIREFRAME_OFS_RELATIVE) != 0,
+ (wmd->flag & MOD_WIREFRAME_CREASE) != 0,
wmd->crease_weight,
defgrp_index,
(wmd->flag & MOD_WIREFRAME_INVERT_VGROUP) != 0,