Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_mesh_types.h
| Show First 20 Lines • Show All 279 Lines • ▼ Show 20 Lines | typedef struct Mesh { | ||||
| struct MPoly *mpoly DNA_DEPRECATED; | struct MPoly *mpoly DNA_DEPRECATED; | ||||
| /** Deprecated pointer to face corners, kept for forward compatibility. */ | /** Deprecated pointer to face corners, kept for forward compatibility. */ | ||||
| struct MLoop *mloop DNA_DEPRECATED; | struct MLoop *mloop DNA_DEPRECATED; | ||||
| /** Deprecated array of mesh vertices, kept for reading old files, now stored in #CustomData. */ | /** Deprecated array of mesh vertices, kept for reading old files, now stored in #CustomData. */ | ||||
| struct MVert *mvert DNA_DEPRECATED; | struct MVert *mvert DNA_DEPRECATED; | ||||
| /** Deprecated array of mesh edges, kept for reading old files, now stored in #CustomData. */ | /** Deprecated array of mesh edges, kept for reading old files, now stored in #CustomData. */ | ||||
| struct MEdge *medge DNA_DEPRECATED; | struct MEdge *medge DNA_DEPRECATED; | ||||
| /** Deprecated "Vertex group" data. Kept for reading old files, now stored in #CustomData.*/ | /** Deprecated "Vertex group" data. Kept for reading old files, now stored in #CustomData. */ | ||||
| struct MDeformVert *dvert DNA_DEPRECATED; | struct MDeformVert *dvert DNA_DEPRECATED; | ||||
| /** Deprecated runtime data for tessellation face UVs and texture, kept for reading old files. */ | /** Deprecated runtime data for tessellation face UVs and texture, kept for reading old files. */ | ||||
| struct MTFace *mtface DNA_DEPRECATED; | struct MTFace *mtface DNA_DEPRECATED; | ||||
| /** Deprecated, use mtface. */ | /** Deprecated, use mtface. */ | ||||
| struct TFace *tface DNA_DEPRECATED; | struct TFace *tface DNA_DEPRECATED; | ||||
| /** Deprecated array of colors for the tessellated faces, kept for reading old files. */ | /** Deprecated array of colors for the tessellated faces, kept for reading old files. */ | ||||
| struct MCol *mcol DNA_DEPRECATED; | struct MCol *mcol DNA_DEPRECATED; | ||||
| /** Deprecated face storage (quads & triangles only). Kept for reading old files. */ | /** Deprecated face storage (quads & triangles only). Kept for reading old files. */ | ||||
| ▲ Show 20 Lines • Show All 178 Lines • Show Last 20 Lines | |||||