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/makesdna
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/makesdna')
-rw-r--r--source/blender/makesdna/DNA_customdata_types.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_customdata_types.h b/source/blender/makesdna/DNA_customdata_types.h
index 510ccfb67fc..18c18d9e9dd 100644
--- a/source/blender/makesdna/DNA_customdata_types.h
+++ b/source/blender/makesdna/DNA_customdata_types.h
@@ -75,9 +75,8 @@ typedef struct CustomData {
#define CD_MLOOPCOL 17
#define CD_TANGENT 18
#define CD_MDISPS 19
-#define CD_NUMTYPES 20
- /* fake type, derivedmesh wants CustomDataMask for weightpaint too, is not stored */
-#define CD_WEIGHTPAINT 30
+#define CD_WEIGHT_MCOL 20 /* for displaying weightpaint colors */
+#define CD_NUMTYPES 21
/* Bits for CustomDataMask */
#define CD_MASK_MVERT (1 << CD_MVERT)
@@ -100,6 +99,7 @@ typedef struct CustomData {
#define CD_MASK_MLOOPCOL (1 << CD_MLOOPCOL)
#define CD_MASK_TANGENT (1 << CD_TANGENT)
#define CD_MASK_MDISPS (1 << CD_MDISPS)
+#define CD_MASK_WEIGHT_MCOL (1 << CD_WEIGHT_MCOL)
/* derivedmesh wants CustomDataMask for weightpaint too, is not customdata though */
#define CD_MASK_WEIGHTPAINT (1 << CD_WEIGHTPAINT)