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:
authorLukas Tönne <lukas.toenne@gmail.com>2014-11-27 11:35:54 +0300
committerLukas Tönne <lukas.toenne@gmail.com>2015-04-20 13:14:23 +0300
commitb0a9e48a19788145bf6c6a19ca080af7dec97614 (patch)
tree919c1591f91fc94026599a1576d2ae00b4a1ed08 /source/blender/blenkernel/intern/customdata.c
parentafb947c00c134671c8203bf1a69c46aea92230ec (diff)
New customdata type for mesh surface samples.
Conflicts: source/blender/makesdna/DNA_customdata_types.h
Diffstat (limited to 'source/blender/blenkernel/intern/customdata.c')
-rw-r--r--source/blender/blenkernel/intern/customdata.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/customdata.c b/source/blender/blenkernel/intern/customdata.c
index baf6639d2cf..a05082a5873 100644
--- a/source/blender/blenkernel/intern/customdata.c
+++ b/source/blender/blenkernel/intern/customdata.c
@@ -1317,6 +1317,8 @@ static const LayerTypeInfo LAYERTYPEINFO[CD_NUMTYPES] = {
{sizeof(HairEditCurve), "HairEditCurve", 1, NULL, NULL, NULL, NULL, NULL, NULL},
/* 43: CD_HAIR_VERT */
{sizeof(HairEditVertex), "HairEditVertex", 1, NULL, NULL, NULL, NULL, NULL, NULL},
+ /* 44: CD_MESH_SAMPLE */
+ {sizeof(MSurfaceSample), "MSurfaceSample", 1, NULL, NULL, NULL, NULL, NULL, NULL},
};
/* note, numbers are from trunk and need updating for bmesh */