Differential D4911 Diff 15559 source/blender/depsgraph/intern/builder/deg_builder_nodes_view_layer.cc
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/intern/builder/deg_builder_nodes_view_layer.cc
| Show First 20 Lines • Show All 119 Lines • ▼ Show 20 Lines | void DepsgraphNodeBuilder::build_view_layer(Scene *scene, | ||||
| if (scene->adt != NULL) { | if (scene->adt != NULL) { | ||||
| build_animdata(&scene->id); | build_animdata(&scene->id); | ||||
| } | } | ||||
| /* World. */ | /* World. */ | ||||
| if (scene->world != NULL) { | if (scene->world != NULL) { | ||||
| build_world(scene->world); | build_world(scene->world); | ||||
| } | } | ||||
| /* Compositor nodes */ | /* Compositor nodes */ | ||||
| if (scene->nodetree != NULL) { | build_scene_compositor(scene); | ||||
| build_compositor(scene); | |||||
| } | |||||
| /* Cache file. */ | /* Cache file. */ | ||||
| LISTBASE_FOREACH (CacheFile *, cachefile, &bmain_->cachefiles) { | LISTBASE_FOREACH (CacheFile *, cachefile, &bmain_->cachefiles) { | ||||
| build_cachefile(cachefile); | build_cachefile(cachefile); | ||||
| } | } | ||||
| /* Masks. */ | /* Masks. */ | ||||
| LISTBASE_FOREACH (Mask *, mask, &bmain_->masks) { | LISTBASE_FOREACH (Mask *, mask, &bmain_->masks) { | ||||
| build_mask(mask); | build_mask(mask); | ||||
| } | } | ||||
| Show All 30 Lines | |||||