Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/intern/node/deg_node_operation.cc
| Show First 20 Lines • Show All 57 Lines • ▼ Show 20 Lines | switch (opcode) { | ||||
| case OperationCode::DRIVER: | case OperationCode::DRIVER: | ||||
| return "DRIVER"; | return "DRIVER"; | ||||
| /* Scene related. */ | /* Scene related. */ | ||||
| case OperationCode::SCENE_EVAL: | case OperationCode::SCENE_EVAL: | ||||
| return "SCENE_EVAL"; | return "SCENE_EVAL"; | ||||
| case OperationCode::AUDIO_VOLUME: | case OperationCode::AUDIO_VOLUME: | ||||
| return "AUDIO_VOLUME"; | return "AUDIO_VOLUME"; | ||||
| /* Object related. */ | /* Object related. */ | ||||
| case OperationCode::OBJECT_FROM_LAYER_ENTRY: | |||||
| return "OBJECT_FROM_LAYER_ENTRY"; | |||||
| case OperationCode::OBJECT_BASE_FLAGS: | case OperationCode::OBJECT_BASE_FLAGS: | ||||
| return "OBJECT_BASE_FLAGS"; | return "OBJECT_BASE_FLAGS"; | ||||
| case OperationCode::OBJECT_FROM_LAYER_EXIT: | |||||
| return "OBJECT_FROM_LAYER_EXIT"; | |||||
| case OperationCode::DIMENSIONS: | case OperationCode::DIMENSIONS: | ||||
| return "DIMENSIONS"; | return "DIMENSIONS"; | ||||
| /* Transform. */ | /* Transform. */ | ||||
| case OperationCode::TRANSFORM_INIT: | case OperationCode::TRANSFORM_INIT: | ||||
| return "TRANSFORM_INIT"; | return "TRANSFORM_INIT"; | ||||
| case OperationCode::TRANSFORM_LOCAL: | case OperationCode::TRANSFORM_LOCAL: | ||||
| return "TRANSFORM_LOCAL"; | return "TRANSFORM_LOCAL"; | ||||
| case OperationCode::TRANSFORM_PARENT: | case OperationCode::TRANSFORM_PARENT: | ||||
| ▲ Show 20 Lines • Show All 194 Lines • Show Last 20 Lines | |||||