Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_mesh_types.h
| Show First 20 Lines • Show All 223 Lines • ▼ Show 20 Lines | typedef struct Mesh { | ||||
| char _pad1[2]; | char _pad1[2]; | ||||
| int face_sets_color_seed; | int face_sets_color_seed; | ||||
| /* Stores the initial Face Set to be rendered white. This way the overlay can be enabled by | /* Stores the initial Face Set to be rendered white. This way the overlay can be enabled by | ||||
| * default and Face Sets can be used without affecting the color of the mesh. */ | * default and Face Sets can be used without affecting the color of the mesh. */ | ||||
| int face_sets_color_default; | int face_sets_color_default; | ||||
| void *_pad2; | |||||
| Mesh_Runtime runtime; | Mesh_Runtime runtime; | ||||
| } Mesh; | } Mesh; | ||||
| /* deprecated by MTFace, only here for file reading */ | /* deprecated by MTFace, only here for file reading */ | ||||
| #ifdef DNA_DEPRECATED_ALLOW | #ifdef DNA_DEPRECATED_ALLOW | ||||
| typedef struct TFace { | typedef struct TFace { | ||||
| /** The faces image for the active UVLayer. */ | /** The faces image for the active UVLayer. */ | ||||
| void *tpage; | void *tpage; | ||||
| ▲ Show 20 Lines • Show All 97 Lines • Show Last 20 Lines | |||||