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-03-29 20:43:39 +0400
committerDaniel Dunbar <daniel@zuster.org>2005-03-29 20:43:39 +0400
commite229722d5b20c0603f0b0cf0e559a43b4c5ec546 (patch)
treeda5a3b7ca09e989aa9246f5172ef7135297659a5 /source/blender/blenkernel/BKE_displist.h
parentda0a55d2b41d563385679d9beb12c26eaf7f1f63 (diff)
- added Mesh->derived and Mesh->decimated DerivedMesh pointers
- removed DL_MESH displist type!!!! Now store a DerivedMesh directly. - May still be some issues left having to do with releasing this at the right time (old code just splashed free_displist all over the place).
Diffstat (limited to 'source/blender/blenkernel/BKE_displist.h')
-rw-r--r--source/blender/blenkernel/BKE_displist.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/source/blender/blenkernel/BKE_displist.h b/source/blender/blenkernel/BKE_displist.h
index 0146d1a2341..ac8c601c5a5 100644
--- a/source/blender/blenkernel/BKE_displist.h
+++ b/source/blender/blenkernel/BKE_displist.h
@@ -45,7 +45,6 @@
#define DL_VERTCOL 6
#define DL_VERTS 7
#define DL_NORS 8
-#define DL_MESH 9
/* dl->flag */
#define DL_CYCL_U 1
@@ -133,8 +132,6 @@ typedef struct DispList {
float *verts, *nors;
int *index;
unsigned int *col1, *col2;
- struct DispListMesh *mesh;
-
} DispList;
extern void copy_displist(struct ListBase *lbn, struct ListBase *lb);