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:
authorGeoffrey Bantle <hairbat@yahoo.com>2008-09-02 20:39:03 +0400
committerGeoffrey Bantle <hairbat@yahoo.com>2008-09-02 20:39:03 +0400
commitead69661e814218290abcf3cf010f8b0d8e7e986 (patch)
treec745409a5f2f728e4a60ce2a75c8eb161a050944
parent84dcfa181b0722655ceba3930a2daa0e27e72f93 (diff)
-> Fix for 64 bit alignment of Vertex colors in bmesh
Vertex color structure in bmesh needed to be padded for 8 byte aligned memory access.
-rw-r--r--source/blender/makesdna/DNA_meshdata_types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_meshdata_types.h b/source/blender/makesdna/DNA_meshdata_types.h
index 4e427ed733c..fc686a4cc10 100644
--- a/source/blender/makesdna/DNA_meshdata_types.h
+++ b/source/blender/makesdna/DNA_meshdata_types.h
@@ -82,6 +82,7 @@ typedef struct MLoopUV{
typedef struct MLoopCol{
char a, r, g, b;
+ int pad; /*waste!*/
}MLoopCol;
typedef struct MSticky {