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:
authorDaniel Dunbar <daniel@zuster.org>2005-07-14 19:58:32 +0400
committerDaniel Dunbar <daniel@zuster.org>2005-07-14 19:58:32 +0400
commit6fefc761cc2c6e55cbfa1b56880263c1485d0638 (patch)
treefce0e94d1a6dbf56befa6a448f108773635d0a71 /source/blender/makesdna/DNA_mesh_types.h
parentd22d9ab3c8b035b2bd1a120e9bb1974f827e0ced (diff)
- declare Mesh.mface and Mesh.tface to be of proper type instead of void*
Diffstat (limited to 'source/blender/makesdna/DNA_mesh_types.h')
-rw-r--r--source/blender/makesdna/DNA_mesh_types.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_mesh_types.h b/source/blender/makesdna/DNA_mesh_types.h
index b7ef4b0f3bd..4f401d55231 100644
--- a/source/blender/makesdna/DNA_mesh_types.h
+++ b/source/blender/makesdna/DNA_mesh_types.h
@@ -42,6 +42,7 @@ struct Key;
struct Material;
struct MVert;
struct MEdge;
+struct MFace;
struct MCol;
struct MSticky;
struct Mesh;
@@ -70,7 +71,9 @@ typedef struct Mesh {
struct Key *key;
struct Material **mat;
- void *mface, *dface, *tface;
+ struct MFace *mface;
+ struct TFace *tface;
+ void *dface;
struct MVert *mvert;
struct MEdge *medge;
struct MDeformVert *dvert; /* __NLA */