Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_scene_types.h
| Show All 28 Lines | |||||
| /* XXX, temp feature - campbell */ | /* XXX, temp feature - campbell */ | ||||
| #define DURIAN_CAMERA_SWITCH | #define DURIAN_CAMERA_SWITCH | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| extern "C" { | extern "C" { | ||||
| #endif | #endif | ||||
| #include "DNA_color_types.h" /* color management */ | #include "DNA_color_types.h" /* color management */ | ||||
| #include "DNA_customdata_types.h" /* Scene's runtime cddata masks. */ | |||||
| #include "DNA_vec_types.h" | #include "DNA_vec_types.h" | ||||
| #include "DNA_listBase.h" | #include "DNA_listBase.h" | ||||
| #include "DNA_ID.h" | #include "DNA_ID.h" | ||||
| #include "DNA_freestyle_types.h" | #include "DNA_freestyle_types.h" | ||||
| #include "DNA_gpu_types.h" | #include "DNA_gpu_types.h" | ||||
| #include "DNA_collection_types.h" | #include "DNA_collection_types.h" | ||||
| #include "DNA_layer_types.h" | #include "DNA_layer_types.h" | ||||
| #include "DNA_material_types.h" | #include "DNA_material_types.h" | ||||
| #include "DNA_userdef_types.h" | #include "DNA_userdef_types.h" | ||||
| #include "DNA_view3d_types.h" | #include "DNA_view3d_types.h" | ||||
| struct AnimData; | struct AnimData; | ||||
| struct Brush; | struct Brush; | ||||
| struct Collection; | struct Collection; | ||||
| struct ColorSpace; | struct ColorSpace; | ||||
| struct CurveMapping; | struct CurveMapping; | ||||
| struct CustomData_Masks; | |||||
| struct Editing; | struct Editing; | ||||
| struct Image; | struct Image; | ||||
| struct MovieClip; | struct MovieClip; | ||||
| struct Object; | struct Object; | ||||
| struct Scene; | struct Scene; | ||||
| struct SceneCollection; | struct SceneCollection; | ||||
| struct SceneStats; | struct SceneStats; | ||||
| struct Text; | struct Text; | ||||
| ▲ Show 20 Lines • Show All 1,683 Lines • ▼ Show 20 Lines | typedef struct Scene { | ||||
| struct MovieClip *clip; | struct MovieClip *clip; | ||||
| /* Physics simulation settings */ | /* Physics simulation settings */ | ||||
| struct PhysicsSettings physics_settings; | struct PhysicsSettings physics_settings; | ||||
| void *pad8; | void *pad8; | ||||
| /* XXX. runtime flag for drawing, actually belongs in the window, | /* XXX. runtime flag for drawing, actually belongs in the window, | ||||
| * only used by BKE_object_handle_update() */ | * only used by BKE_object_handle_update() */ | ||||
| uint64_t customdata_mask; | struct CustomData_Masks customdata_mask; | ||||
| /* XXX. same as above but for temp operator use (gl renders) */ | /* XXX. same as above but for temp operator use (gl renders) */ | ||||
| uint64_t customdata_mask_modal; | struct CustomData_Masks customdata_mask_modal; | ||||
| /* Color Management */ | /* Color Management */ | ||||
| ColorManagedViewSettings view_settings; | ColorManagedViewSettings view_settings; | ||||
| ColorManagedDisplaySettings display_settings; | ColorManagedDisplaySettings display_settings; | ||||
| ColorManagedColorspaceSettings sequencer_colorspace_settings; | ColorManagedColorspaceSettings sequencer_colorspace_settings; | ||||
| /* RigidBody simulation world+settings */ | /* RigidBody simulation world+settings */ | ||||
| struct RigidBodyWorld *rigidbody_world; | struct RigidBodyWorld *rigidbody_world; | ||||
| ▲ Show 20 Lines • Show All 663 Lines • Show Last 20 Lines | |||||