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:
authorAndrew Wiggin <ender79bl@gmail.com>2011-11-29 09:09:54 +0400
committerAndrew Wiggin <ender79bl@gmail.com>2011-11-29 09:09:54 +0400
commit4e86b48cbdcbe1d0177b57dba74e08ba21e1878b (patch)
treeea3566b03197b7d2883d7a45cd57487290992cb1 /source/blender/modifiers/intern/MOD_build.c
parentf2551ff7998d6eb49f0da7dea8cd5ef6810a732e (diff)
Rename DM *_face_* funcs to be either *_tessface_* or *_poly_* to avoid confusion
This is the first step in a few changes to cleanup confusing/missing DM funcs
Diffstat (limited to 'source/blender/modifiers/intern/MOD_build.c')
-rw-r--r--source/blender/modifiers/intern/MOD_build.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_build.c b/source/blender/modifiers/intern/MOD_build.c
index 364022a9bcf..ff80823283c 100644
--- a/source/blender/modifiers/intern/MOD_build.c
+++ b/source/blender/modifiers/intern/MOD_build.c
@@ -264,7 +264,7 @@ static DerivedMesh *applyModifier(ModifierData *md, Object *UNUSED(ob),
source = mpolys + faceMap[i];
dest = mpolyd + i;
- DM_copy_face_data(dm, result, faceMap[i], i, 1);
+ DM_copy_poly_data(dm, result, faceMap[i], i, 1);
*dest = *source;
dest->loopstart = k;