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-04 23:49:35 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-12-04 23:49:35 +0400
commitbf77a177d406c378a74bf4572717159994d1faaf (patch)
treed2358b5a6ea8905e494104ecbdbe6db13a86a3d3 /source/blender/makesdna
parent229dd30f37d222845f2902148d50070dcc12246d (diff)
remove mesh PartialVisibility, it wasnt being version patches or used anywhere, other then save/load/free.
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_mesh_types.h2
-rw-r--r--source/blender/makesdna/DNA_meshdata_types.h8
2 files changed, 0 insertions, 10 deletions
diff --git a/source/blender/makesdna/DNA_mesh_types.h b/source/blender/makesdna/DNA_mesh_types.h
index b7d9208e595..7d57e2c295c 100644
--- a/source/blender/makesdna/DNA_mesh_types.h
+++ b/source/blender/makesdna/DNA_mesh_types.h
@@ -48,7 +48,6 @@ struct MSticky;
struct Mesh;
struct OcInfo;
struct Multires;
-struct PartialVisibility;
struct EditMesh;
struct AnimData;
@@ -100,7 +99,6 @@ typedef struct Mesh {
short totcol;
struct Multires *mr DNA_DEPRECATED; /* deprecated multiresolution modeling data, only keep for loading old files */
- struct PartialVisibility *pv;
} Mesh;
/* deprecated by MTFace, only here for file reading */
diff --git a/source/blender/makesdna/DNA_meshdata_types.h b/source/blender/makesdna/DNA_meshdata_types.h
index b6fc8106ba0..d772324cd72 100644
--- a/source/blender/makesdna/DNA_meshdata_types.h
+++ b/source/blender/makesdna/DNA_meshdata_types.h
@@ -174,14 +174,6 @@ typedef struct Multires {
/** End Multires **/
-typedef struct PartialVisibility {
- unsigned int *vert_map; /* vert_map[Old Index]= New Index */
- int *edge_map; /* edge_map[Old Index]= New Index, -1= hidden */
- MFace *old_faces;
- MEdge *old_edges;
- unsigned int totface, totedge, totvert, pad;
-} PartialVisibility;
-
typedef struct MRecast{
int i;
} MRecast;