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:
authorJoseph Eagar <joeedh@gmail.com>2010-07-15 02:06:10 +0400
committerJoseph Eagar <joeedh@gmail.com>2010-07-15 02:06:10 +0400
commita37bcf93ef395817a881918053ffff9c2ab73a03 (patch)
treefd43545e6e98467828c7496f6b27267f5abde24f /source/blender/makesdna/DNA_customdata_types.h
parent43f2a8cee7d95b8199b29719541f9f0ea98674c3 (diff)
wip commit; DO NOT USE. almost done with phase 1 of this restructuring, basically just some things that needed to be done before trunk (and some things that needed to be started, but can be finished much later).
Diffstat (limited to 'source/blender/makesdna/DNA_customdata_types.h')
-rw-r--r--source/blender/makesdna/DNA_customdata_types.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_customdata_types.h b/source/blender/makesdna/DNA_customdata_types.h
index 23fb50508b6..52822b67b68 100644
--- a/source/blender/makesdna/DNA_customdata_types.h
+++ b/source/blender/makesdna/DNA_customdata_types.h
@@ -89,7 +89,9 @@ typedef struct CustomData {
#define CD_TEXTURE_MCOL 25
#define CD_SHAPE_KEYINDEX 26
#define CD_SHAPEKEY 27
-#define CD_NUMTYPES 28
+#define CD_BWEIGHT 28
+#define CD_CREASE 29
+#define CD_NUMTYPES 30
/* Bits for CustomDataMask */
#define CD_MASK_MVERT (1 << CD_MVERT)
@@ -118,9 +120,10 @@ typedef struct CustomData {
#define CD_MASK_WEIGHT_MLOOPCOL (1 << CD_WEIGHT_MLOOPCOL)
#define CD_MASK_SHAPE_KEYINDEX (1 << CD_SHAPE_KEYINDEX)
#define CD_MASK_SHAPEKEY (1 << CD_SHAPEKEY)
-
/* derivedmesh wants CustomDataMask for weightpaint too, is not customdata though */
#define CD_MASK_WEIGHTPAINT (1 << CD_WEIGHTPAINT)
+#define CD_MASK_BWEIGHT (1 << CD_BWEIGHT)
+#define CD_MASK_CREASE (1 << CD_CREASE)
/* CustomData.flag */