Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/intern/depsgraph_tag.cc
| Show First 20 Lines • Show All 205 Lines • ▼ Show 20 Lines | case ID_RECALC_POINT_CACHE: | ||||
| break; | break; | ||||
| case ID_RECALC_EDITORS: | case ID_RECALC_EDITORS: | ||||
| /* There is no such node in depsgraph, this tag is to be handled | /* There is no such node in depsgraph, this tag is to be handled | ||||
| * separately. */ | * separately. */ | ||||
| break; | break; | ||||
| case ID_RECALC_SEQUENCER_STRIPS: | case ID_RECALC_SEQUENCER_STRIPS: | ||||
| *component_type = NodeType::SEQUENCER; | *component_type = NodeType::SEQUENCER; | ||||
| break; | break; | ||||
| case ID_RECALC_AUDIO_SEEK: | case ID_RECALC_FRAME_CHANGE: | ||||
| case ID_RECALC_AUDIO_FPS: | case ID_RECALC_AUDIO_FPS: | ||||
| case ID_RECALC_AUDIO_VOLUME: | case ID_RECALC_AUDIO_VOLUME: | ||||
| case ID_RECALC_AUDIO_MUTE: | case ID_RECALC_AUDIO_MUTE: | ||||
| case ID_RECALC_AUDIO_LISTENER: | case ID_RECALC_AUDIO_LISTENER: | ||||
| case ID_RECALC_AUDIO: | case ID_RECALC_AUDIO: | ||||
| *component_type = NodeType::AUDIO; | *component_type = NodeType::AUDIO; | ||||
| break; | break; | ||||
| case ID_RECALC_PARAMETERS: | case ID_RECALC_PARAMETERS: | ||||
| ▲ Show 20 Lines • Show All 509 Lines • ▼ Show 20 Lines | switch (flag) { | ||||
| case ID_RECALC_BASE_FLAGS: | case ID_RECALC_BASE_FLAGS: | ||||
| return "BASE_FLAGS"; | return "BASE_FLAGS"; | ||||
| case ID_RECALC_POINT_CACHE: | case ID_RECALC_POINT_CACHE: | ||||
| return "POINT_CACHE"; | return "POINT_CACHE"; | ||||
| case ID_RECALC_EDITORS: | case ID_RECALC_EDITORS: | ||||
| return "EDITORS"; | return "EDITORS"; | ||||
| case ID_RECALC_SEQUENCER_STRIPS: | case ID_RECALC_SEQUENCER_STRIPS: | ||||
| return "SEQUENCER_STRIPS"; | return "SEQUENCER_STRIPS"; | ||||
| case ID_RECALC_AUDIO_SEEK: | case ID_RECALC_FRAME_CHANGE: | ||||
| return "AUDIO_SEEK"; | return "AUDIO_SEEK"; | ||||
| case ID_RECALC_AUDIO_FPS: | case ID_RECALC_AUDIO_FPS: | ||||
| return "AUDIO_FPS"; | return "AUDIO_FPS"; | ||||
| case ID_RECALC_AUDIO_VOLUME: | case ID_RECALC_AUDIO_VOLUME: | ||||
| return "AUDIO_VOLUME"; | return "AUDIO_VOLUME"; | ||||
| case ID_RECALC_AUDIO_MUTE: | case ID_RECALC_AUDIO_MUTE: | ||||
| return "AUDIO_MUTE"; | return "AUDIO_MUTE"; | ||||
| case ID_RECALC_AUDIO_LISTENER: | case ID_RECALC_AUDIO_LISTENER: | ||||
| ▲ Show 20 Lines • Show All 164 Lines • Show Last 20 Lines | |||||