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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-04-02 18:38:40 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-04-02 18:38:40 +0400
commite9ad9f894e2151fb192e8a4215b4ac6e73a28d0c (patch)
tree53e10812f555c7b41bb4f7b7cdd83619795988e8 /source/blender/editors/space_view3d/view3d_draw.c
parent4bb41c3dcdd029db63435e83700520070703a9bc (diff)
2.5: weight paint mode fix for corrupted layer data, and added
a customdata layer specifically to store weightpaint colors instead of abusing the vertex colors layers.
Diffstat (limited to 'source/blender/editors/space_view3d/view3d_draw.c')
-rw-r--r--source/blender/editors/space_view3d/view3d_draw.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/editors/space_view3d/view3d_draw.c b/source/blender/editors/space_view3d/view3d_draw.c
index 00843a58ba7..0a063182368 100644
--- a/source/blender/editors/space_view3d/view3d_draw.c
+++ b/source/blender/editors/space_view3d/view3d_draw.c
@@ -1858,8 +1858,10 @@ static CustomDataMask get_viewedit_datamask(bScreen *screen)
}
/* check if we need mcols due to vertex paint or weightpaint */
- if(G.f & G_VERTEXPAINT || G.f & G_WEIGHTPAINT)
+ if(G.f & G_VERTEXPAINT)
mask |= CD_MASK_MCOL;
+ if(G.f & G_WEIGHTPAINT)
+ mask |= CD_MASK_WEIGHT_MCOL;
if(G.f & G_SCULPTMODE)
mask |= CD_MASK_MDISPS;