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:21:09 +0300
committerChris Want <cwant@ualberta.ca>2004-03-15 00:21:09 +0300
commit6c650c586d22a0dc17f4ae9695b0b956713092d9 (patch)
tree40e817cb37b5c92252f2333ba11727de27e17a93 /source/blender/makesdna/DNA_mesh_types.h
parent807db2ea4077cb198c696c65b77a6bab23cacd02 (diff)
Fixed issues surrounding the increased vertex limit:
* Created a MESH_MAX_VERTS macro in DNA_mesh_types.h * fixed vert limit for converting displistmesh ==> mesh * fixed vert limit when doing boolean operations
Diffstat (limited to 'source/blender/makesdna/DNA_mesh_types.h')
-rw-r--r--source/blender/makesdna/DNA_mesh_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_mesh_types.h b/source/blender/makesdna/DNA_mesh_types.h
index ac52a3a6bbc..74f5d388723 100644
--- a/source/blender/makesdna/DNA_mesh_types.h
+++ b/source/blender/makesdna/DNA_mesh_types.h
@@ -211,5 +211,6 @@ typedef struct Mesh {
#define ME_SPHERETEMP 4
#define ME_HIDE 16
-#endif
+#define MESH_MAX_VERTS 2000000000L
+#endif