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:
authorChris Want <cwant@ualberta.ca>2004-03-15 00:00:51 +0300
committerChris Want <cwant@ualberta.ca>2004-03-15 00:00:51 +0300
commitdd3c9c0c466d74d20e42db6ec994dc0ddbb7ee9b (patch)
tree0213330438695db5f4da4efdc63479a950014b46 /source/blender/makesdna/DNA_mesh_types.h
parenta91ef3f4e1a329c103be54a278752d65bd3529f0 (diff)
Removed the struct MFaceInt from DNA_mesh_types.h (by the recommendation
of zr). This struct was never written to file and the new 'int based' MFace can be used in it's place. Some removal of redundant code could perhaps be done now (I didn't do any though, just "s/MFaceInt/MFace/").
Diffstat (limited to 'source/blender/makesdna/DNA_mesh_types.h')
-rw-r--r--source/blender/makesdna/DNA_mesh_types.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/source/blender/makesdna/DNA_mesh_types.h b/source/blender/makesdna/DNA_mesh_types.h
index 55ab0f14cdd..ac52a3a6bbc 100644
--- a/source/blender/makesdna/DNA_mesh_types.h
+++ b/source/blender/makesdna/DNA_mesh_types.h
@@ -45,25 +45,12 @@ struct Mesh;
struct OcInfo;
struct bDeformGroup;
-/* This little gem is needed to satisfy the curious realms of sdna. On
- * the other hand, it also interferes with sys/types.h, so we get rid
- * of it asap. */
-
typedef struct MFace {
unsigned int v1, v2, v3, v4;
char puno, mat_nr;
char edcode, flag;
} MFace;
-#undef ushort
-
-typedef struct MFaceInt {
- int v1, v2, v3, v4;
- char puno, mat_nr;
- char edcode, flag;
-} MFaceInt;
-
-
typedef struct TFace {
/* this one gets interpreted as a image in texture.c */