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>2012-02-19 05:51:36 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-19 05:51:36 +0400
commitece3418b4eb335bf26c954537d550da8e083e25f (patch)
tree4a88e25e7f575afc926aebe3ef09ef7063d6a5dd /source/blender/blenkernel/BKE_tessmesh.h
parent2fd4877c766f42f38882c512ad9572c27173fefa (diff)
edit-derived-mesh had a table for vert/edge/face lookups - that were never used.
removed these and replaced them with calls to BM_vert_at_index, BM_edge_at_index - which are not ideal but same as trunk does.
Diffstat (limited to 'source/blender/blenkernel/BKE_tessmesh.h')
-rw-r--r--source/blender/blenkernel/BKE_tessmesh.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/source/blender/blenkernel/BKE_tessmesh.h b/source/blender/blenkernel/BKE_tessmesh.h
index 696535a674d..cc3f2870711 100644
--- a/source/blender/blenkernel/BKE_tessmesh.h
+++ b/source/blender/blenkernel/BKE_tessmesh.h
@@ -60,13 +60,10 @@ typedef struct BMEditMesh {
/*derivedmesh stuff*/
struct DerivedMesh *derivedFinal, *derivedCage;
int lastDataMask;
-
- /*retopo data pointer*/
- struct RetopoPaintData *retopo_paint_data;
- /*index tables, to map indices to elements via
- EDBM_init_index_arrays and associated functions. don't
- touch this or read it directly.*/
+ /* index tables, to map indices to elements via
+ * EDBM_init_index_arrays and associated functions. don't
+ * touch this or read it directly.*/
struct BMVert **vert_index;
struct BMEdge **edge_index;
struct BMFace **face_index;