Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_scene_types.h
| Show First 20 Lines • Show All 1,638 Lines • ▼ Show 20 Lines | typedef struct SceneEEVEE { | ||||
| struct LightCache *light_cache DNA_DEPRECATED; | struct LightCache *light_cache DNA_DEPRECATED; | ||||
| struct LightCache *light_cache_data; | struct LightCache *light_cache_data; | ||||
| char light_cache_info[64]; | char light_cache_info[64]; | ||||
| float overscan; | float overscan; | ||||
| float light_threshold; | float light_threshold; | ||||
| } SceneEEVEE; | } SceneEEVEE; | ||||
| typedef struct SceneGpencil { | |||||
| float smaa_threshold; | |||||
| char _pad[4]; | |||||
| } SceneGpencil; | |||||
| /* *************************************************************** */ | /* *************************************************************** */ | ||||
| /* Scene ID-Block */ | /* Scene ID-Block */ | ||||
| typedef struct TransformOrientationSlot { | typedef struct TransformOrientationSlot { | ||||
| int type; | int type; | ||||
| int index_custom; | int index_custom; | ||||
| char flag; | char flag; | ||||
| char _pad0[7]; | char _pad0[7]; | ||||
| ▲ Show 20 Lines • Show All 115 Lines • ▼ Show 20 Lines | typedef struct Scene { | ||||
| struct SceneCollection *collection DNA_DEPRECATED; | struct SceneCollection *collection DNA_DEPRECATED; | ||||
| /** Settings to be override by workspaces. */ | /** Settings to be override by workspaces. */ | ||||
| IDProperty *layer_properties; | IDProperty *layer_properties; | ||||
| void *_pad9; | void *_pad9; | ||||
| struct SceneDisplay display; | struct SceneDisplay display; | ||||
| struct SceneEEVEE eevee; | struct SceneEEVEE eevee; | ||||
| struct SceneGpencil grease_pencil_settings; | |||||
| } Scene; | } Scene; | ||||
| /* **************** RENDERDATA ********************* */ | /* **************** RENDERDATA ********************* */ | ||||
| /** #RenderData.flag */ | /** #RenderData.flag */ | ||||
| /* use preview range */ | /* use preview range */ | ||||
| #define SCER_PRV_RANGE (1 << 0) | #define SCER_PRV_RANGE (1 << 0) | ||||
| #define SCER_LOCK_FRAME_SELECTION (1 << 1) | #define SCER_LOCK_FRAME_SELECTION (1 << 1) | ||||
| ▲ Show 20 Lines • Show All 622 Lines • Show Last 20 Lines | |||||