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/blenkernel/intern/constraint.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/blenkernel/intern/constraint.c')
-rw-r--r--source/blender/blenkernel/intern/constraint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/constraint.c b/source/blender/blenkernel/intern/constraint.c
index 029911d26d7..5babb626177 100644
--- a/source/blender/blenkernel/intern/constraint.c
+++ b/source/blender/blenkernel/intern/constraint.c
@@ -454,7 +454,7 @@ static void contarget_get_mesh_mat (Object *ob, const char *substring, float mat
/* get DerivedMesh */
if (em) {
/* target is in editmode, so get a special derived mesh */
- dm = CDDM_from_BMEditMesh(em, ob->data, 0);
+ dm = CDDM_from_BMEditMesh(em, ob->data, FALSE, TRUE);
freeDM= 1;
}
else {