Differential D2889 Diff 11446 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 128 Lines • ▼ Show 20 Lines | void DepsgraphNodeBuilder::build_view_layer( | ||||
| /* 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) { | if (scene->nodetree != NULL) { | ||||
| build_compositor(scene); | build_compositor(scene); | ||||
| } | } | ||||
| /* Grease pencil. */ | |||||
| if (scene->gpd != NULL) { | |||||
| build_gpencil(scene->gpd); | |||||
| } | |||||
| /* 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_->mask) { | LISTBASE_FOREACH (Mask *, mask, &bmain_->mask) { | ||||
| build_mask(mask); | build_mask(mask); | ||||
| } | } | ||||
| Show All 26 Lines | |||||