Differential D14626 Diff 50401 source/blender/depsgraph/intern/builder/deg_builder_relations_scene.cc
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/intern/builder/deg_builder_relations_scene.cc
| Show All 21 Lines | void DepsgraphRelationBuilder::build_scene_render(Scene *scene, ViewLayer *view_layer) | ||||
| if (build_compositor) { | if (build_compositor) { | ||||
| build_scene_compositor(scene); | build_scene_compositor(scene); | ||||
| } | } | ||||
| if (build_sequencer) { | if (build_sequencer) { | ||||
| build_scene_sequencer(scene); | build_scene_sequencer(scene); | ||||
| build_scene_speakers(scene, view_layer); | build_scene_speakers(scene, view_layer); | ||||
| } | } | ||||
| if (scene->camera != nullptr) { | if (scene->camera != nullptr) { | ||||
| build_object(scene->camera); | build_object(scene->camera, false); | ||||
| } | } | ||||
| } | } | ||||
| void DepsgraphRelationBuilder::build_scene_parameters(Scene *scene) | void DepsgraphRelationBuilder::build_scene_parameters(Scene *scene) | ||||
| { | { | ||||
| if (built_map_.checkIsBuiltAndTag(scene, BuilderMap::TAG_PARAMETERS)) { | if (built_map_.checkIsBuiltAndTag(scene, BuilderMap::TAG_PARAMETERS)) { | ||||
| return; | return; | ||||
| } | } | ||||
| Show All 24 Lines | |||||