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:
authorCampbell Barton <ideasman42@gmail.com>2011-12-27 17:17:58 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-12-27 17:17:58 +0400
commit0059b8dd96bf065406441112f604e59f65d844d6 (patch)
tree5ec222d2043576e2b7f4ef99b4cf504cf2cf8cb1 /source/blender/makesdna/DNA_mesh_types.h
parentedd6f21f6c23cd37d5ec6a47acf21a900e824a8e (diff)
option to save as older mesh format (ifdef'd for now)
Diffstat (limited to 'source/blender/makesdna/DNA_mesh_types.h')
-rw-r--r--source/blender/makesdna/DNA_mesh_types.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_mesh_types.h b/source/blender/makesdna/DNA_mesh_types.h
index f8062aeccc7..4bca7e7a77f 100644
--- a/source/blender/makesdna/DNA_mesh_types.h
+++ b/source/blender/makesdna/DNA_mesh_types.h
@@ -192,4 +192,12 @@ typedef struct TFace {
#define MESH_MAX_VERTS 2000000000L
+/* this is so we can save bmesh files that load in trunk, ignoring NGons
+ * will eventually be removed */
+
+#if 0 /* enable in bmesh branch only for now */
+#define USE_MESH_FORWARDS_COMAT
+#endif
+
+
#endif