Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/intern/depsgraph_tag.cc
| Show First 20 Lines • Show All 534 Lines • ▼ Show 20 Lines | switch (id_type) { | ||||
| case ID_PA: /* Particles */ | case ID_PA: /* Particles */ | ||||
| return NodeType::UNDEFINED; | return NodeType::UNDEFINED; | ||||
| case ID_LP: | case ID_LP: | ||||
| return NodeType::PARAMETERS; | return NodeType::PARAMETERS; | ||||
| case ID_GD: | case ID_GD: | ||||
| return NodeType::GEOMETRY; | return NodeType::GEOMETRY; | ||||
| case ID_PAL: /* Palettes */ | case ID_PAL: /* Palettes */ | ||||
| return NodeType::PARAMETERS; | return NodeType::PARAMETERS; | ||||
| case ID_MSK: | |||||
| return NodeType::PARAMETERS; | |||||
| default: | default: | ||||
| break; | break; | ||||
| } | } | ||||
| return NodeType::UNDEFINED; | return NodeType::UNDEFINED; | ||||
| } | } | ||||
| void id_tag_update(Main *bmain, ID *id, int flag, eUpdateSource update_source) | void id_tag_update(Main *bmain, ID *id, int flag, eUpdateSource update_source) | ||||
| { | { | ||||
| ▲ Show 20 Lines • Show All 223 Lines • Show Last 20 Lines | |||||