Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/intern/builder/deg_builder_nodes.cc
| Show First 20 Lines • Show All 1,437 Lines • ▼ Show 20 Lines | LISTBASE_FOREACH (bNode *, bnode, &ntree->nodes) { | ||||
| else if (id_type == ID_SCE) { | else if (id_type == ID_SCE) { | ||||
| /* Scenes are used by compositor trees, and handled by render | /* Scenes are used by compositor trees, and handled by render | ||||
| * pipeline. No need to build dependencies for them here. | * pipeline. No need to build dependencies for them here. | ||||
| */ | */ | ||||
| } | } | ||||
| else if (id_type == ID_TXT) { | else if (id_type == ID_TXT) { | ||||
| /* Ignore script nodes. */ | /* Ignore script nodes. */ | ||||
| } | } | ||||
| else if (id_type == ID_MSK) { | |||||
| build_mask((Mask *)id); | |||||
| } | |||||
| else if (id_type == ID_MC) { | else if (id_type == ID_MC) { | ||||
| build_movieclip((MovieClip *)id); | build_movieclip((MovieClip *)id); | ||||
| } | } | ||||
| else if (bnode->type == NODE_GROUP) { | else if (bnode->type == NODE_GROUP) { | ||||
| bNodeTree *group_ntree = (bNodeTree *)id; | bNodeTree *group_ntree = (bNodeTree *)id; | ||||
| build_nodetree(group_ntree); | build_nodetree(group_ntree); | ||||
| } | } | ||||
| else { | else { | ||||
| ▲ Show 20 Lines • Show All 231 Lines • Show Last 20 Lines | |||||