Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_mesh_types.h
| Show First 20 Lines • Show All 106 Lines • ▼ Show 20 Lines | typedef struct Mesh_Runtime { | ||||
| char deformed_only; | char deformed_only; | ||||
| /** | /** | ||||
| * Copied from edit-mesh (hint, draw with edit-mesh data when true). | * Copied from edit-mesh (hint, draw with edit-mesh data when true). | ||||
| * | * | ||||
| * Modifiers that edit the mesh data in-place must set this to false | * Modifiers that edit the mesh data in-place must set this to false | ||||
| * (most #eModifierTypeType_NonGeometrical modifiers). Otherwise the edit-mesh | * (most #eModifierTypeType_NonGeometrical modifiers). Otherwise the edit-mesh | ||||
| * data will be used for drawing, missing changes from modifiers. See T79517. | * data will be used for drawing, missing changes from modifiers. See T79517. | ||||
| */ | */ | ||||
| char is_original; | char is_original_bmesh; | ||||
| /** #eMeshWrapperType and others. */ | /** #eMeshWrapperType and others. */ | ||||
| char wrapper_type; | char wrapper_type; | ||||
| /** | /** | ||||
| * A type mask from wrapper_type, | * A type mask from wrapper_type, | ||||
| * in case there are differences in finalizing logic between types. | * in case there are differences in finalizing logic between types. | ||||
| */ | */ | ||||
| char wrapper_type_finalize; | char wrapper_type_finalize; | ||||
| ▲ Show 20 Lines • Show All 331 Lines • Show Last 20 Lines | |||||