Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_object_types.h
| Show All 22 Lines | |||||
| */ | */ | ||||
| #ifndef __DNA_OBJECT_TYPES_H__ | #ifndef __DNA_OBJECT_TYPES_H__ | ||||
| #define __DNA_OBJECT_TYPES_H__ | #define __DNA_OBJECT_TYPES_H__ | ||||
| #include "DNA_object_enums.h" | #include "DNA_object_enums.h" | ||||
| #include "DNA_defs.h" | #include "DNA_defs.h" | ||||
| #include "DNA_customdata_types.h" | |||||
| #include "DNA_listBase.h" | #include "DNA_listBase.h" | ||||
| #include "DNA_ID.h" | #include "DNA_ID.h" | ||||
| #include "DNA_action_types.h" /* bAnimVizSettings */ | #include "DNA_action_types.h" /* bAnimVizSettings */ | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| extern "C" { | extern "C" { | ||||
| #endif | #endif | ||||
| ▲ Show 20 Lines • Show All 78 Lines • ▼ Show 20 Lines | typedef struct LodLevel { | ||||
| int obhysteresis; | int obhysteresis; | ||||
| } LodLevel; | } LodLevel; | ||||
| /* Forward declaration for cache bbone deformation information. | /* Forward declaration for cache bbone deformation information. | ||||
| * | * | ||||
| * TODO(sergey): Consider moving it to more appropriate place. */ | * TODO(sergey): Consider moving it to more appropriate place. */ | ||||
| struct ObjectBBoneDeform; | struct ObjectBBoneDeform; | ||||
| struct CustomData_Masks; | |||||
| /* Not saved in file! */ | /* Not saved in file! */ | ||||
| typedef struct Object_Runtime { | typedef struct Object_Runtime { | ||||
| /** | /** | ||||
| * The custom data layer mask that was last used | * The custom data layer mask that was last used | ||||
| * to calculate mesh_eval and mesh_deform_eval. | * to calculate mesh_eval and mesh_deform_eval. | ||||
| */ | */ | ||||
| uint64_t last_data_mask; | CustomData_Masks last_data_mask; | ||||
| /** Did last modifier stack generation need mapping support? */ | /** Did last modifier stack generation need mapping support? */ | ||||
| char last_need_mapping; | char last_need_mapping; | ||||
| char _pad0[3]; | char _pad0[3]; | ||||
| /** Only used for drawing the parent/child help-line. */ | /** Only used for drawing the parent/child help-line. */ | ||||
| float parent_display_origin[3]; | float parent_display_origin[3]; | ||||
| ▲ Show 20 Lines • Show All 543 Lines • Show Last 20 Lines | |||||