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-30 22:03:56 +0400
committerAndrew Wiggin <ender79bl@gmail.com>2011-11-30 22:03:56 +0400
commitbc9b593909486e4254657596ccda5bea5577a968 (patch)
tree431a528a32494db20fb891628935f7724c07f128 /source/blender/editors/armature/meshlaplacian.c
parent8a46e46d2c537401dee1d8186b10a7e69138c62a (diff)
More DM func renames, fixing some build breaks, renaming more stuff, also seems like it might be fixing the recent CDDM_copy corruption/leak bug
Diffstat (limited to 'source/blender/editors/armature/meshlaplacian.c')
-rw-r--r--source/blender/editors/armature/meshlaplacian.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/armature/meshlaplacian.c b/source/blender/editors/armature/meshlaplacian.c
index ed37f2056ad..333cd2ef7ca 100644
--- a/source/blender/editors/armature/meshlaplacian.c
+++ b/source/blender/editors/armature/meshlaplacian.c
@@ -1883,7 +1883,7 @@ static void heat_weighting_bind(Scene *scene, DerivedMesh *dm, MeshDeformModifie
LaplacianSystem *sys;
MFace *mface= dm->getTessFaceArray(dm), *mf;
int totvert= dm->getNumVerts(dm);
- int totface= dm->getNumFaces(dm);
+ int totface= dm->getNumTessFaces(dm);
float solution, weight;
int a, tottri, j, thrownerror = 0;