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>2012-01-18 19:09:27 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-01-18 19:09:27 +0400
commit9d782c8a1afb6e42d38d9d32c776dec52451887c (patch)
tree9fd8a76e6b4519e1d953c1e0a01a941c31b2f03b /source/blender/modifiers/intern/MOD_util.c
parent939c4171c4bdaef02ea247a8eafc042bfb1e04d1 (diff)
argument for CDDM_from_BMEditMesh() so creating tessface data is optional, no functional changes since all callers use this so far.
Diffstat (limited to 'source/blender/modifiers/intern/MOD_util.c')
-rw-r--r--source/blender/modifiers/intern/MOD_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_util.c b/source/blender/modifiers/intern/MOD_util.c
index 7fdbea19cfb..e9b60f33fa2 100644
--- a/source/blender/modifiers/intern/MOD_util.c
+++ b/source/blender/modifiers/intern/MOD_util.c
@@ -185,7 +185,7 @@ DerivedMesh *get_dm(Object *ob, struct BMEditMesh *em, DerivedMesh *dm, float (*
return dm;
if(ob->type==OB_MESH) {
- if(em) dm= CDDM_from_BMEditMesh(em, ob->data, 0);
+ if(em) dm= CDDM_from_BMEditMesh(em, ob->data, FALSE, TRUE);
else dm = CDDM_from_mesh((struct Mesh *)(ob->data), ob);
if(vertexCos) {