Differential D2889 Diff 11446 source/blender/depsgraph/intern/builder/deg_builder_relations_view_layer.cc
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/intern/builder/deg_builder_relations_view_layer.cc
| Show First 20 Lines • Show All 117 Lines • ▼ Show 20 Lines | void DepsgraphRelationBuilder::build_view_layer(Scene *scene, ViewLayer *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); | |||||
| } | |||||
| /* Masks. */ | /* Masks. */ | ||||
| LISTBASE_FOREACH (Mask *, mask, &bmain_->mask) { | LISTBASE_FOREACH (Mask *, mask, &bmain_->mask) { | ||||
| build_mask(mask); | build_mask(mask); | ||||
| } | } | ||||
| /* Movie clips. */ | /* Movie clips. */ | ||||
| LISTBASE_FOREACH (MovieClip *, clip, &bmain_->movieclip) { | LISTBASE_FOREACH (MovieClip *, clip, &bmain_->movieclip) { | ||||
| build_movieclip(clip); | build_movieclip(clip); | ||||
| } | } | ||||
| Show All 17 Lines | |||||