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:
authorBen Batt <benbatt@gmail.com>2006-12-05 20:42:03 +0300
committerBen Batt <benbatt@gmail.com>2006-12-05 20:42:03 +0300
commit4f8079d49cc0cc037ef429123ee6faf031b5c333 (patch)
tree027e9ed89fd694d45827b4a46431976ab59fa755 /source/blender/src/vpaint.c
parent869eeadeff956f88f48a3b26ea69d0c2938233a3 (diff)
Modifier Stack: Limit calculation to required data.
This commit upgrades the modifier stack to only calculate the data which is needed, either by modifiers further down the stack or by other functions at the end of the stack (e.g. drawing functions). This speeds up modifier stack recalculation, especially where vertex groups and UV coordinates are concerned. For example, a mesh with an Armature modifier followed by a Subsurf modifier would previously have required the Subsurf modifier to interpolate all the vertex groups in the mesh, slowing down modifier calculations considerably. With this update, vertex group data is not propagated beyond the Armature modifier, so calculations are faster. Note that this depends on the order of modifiers in the stack. If the Armature and Subsurf modifiers were swapped in the above example, the Subsurf modifier would have to interpolate vertex groups, as they are needed by the Armature modifier.
Diffstat (limited to 'source/blender/src/vpaint.c')
-rw-r--r--source/blender/src/vpaint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/vpaint.c b/source/blender/src/vpaint.c
index 916bca354e0..6ee817aeb5f 100644
--- a/source/blender/src/vpaint.c
+++ b/source/blender/src/vpaint.c
@@ -988,7 +988,7 @@ static void sample_wpaint(int mode)
extern float editbutvweight;
float w1, w2, w3, w4, co[3], fac;
- dm = mesh_get_derived_final(ob);
+ dm = mesh_get_derived_final(ob, CD_MASK_BAREMESH);
if(dm->getVertCo==NULL) {
notice("Not supported yet");
}