Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/intern/depsgraph_types.h
| Show First 20 Lines • Show All 248 Lines • ▼ Show 20 Lines | typedef enum eDepsOperation_Code { | ||||
| * chain targeting another in same chain, | * chain targeting another in same chain, | ||||
| * | * | ||||
| * - "DONE" This noop is used to signal that the bone's final pose | * - "DONE" This noop is used to signal that the bone's final pose | ||||
| * transform can be read by others | * transform can be read by others | ||||
| */ | */ | ||||
| // TODO: deform mats could get calculated in the final_transform ops... | // TODO: deform mats could get calculated in the final_transform ops... | ||||
| DEG_OPCODE_BONE_READY, | DEG_OPCODE_BONE_READY, | ||||
| DEG_OPCODE_BONE_DONE, | DEG_OPCODE_BONE_DONE, | ||||
| /* B-Bone segment shape computation (after DONE) */ | |||||
| DEG_OPCODE_BONE_SEGMENTS, | |||||
| /* Particles. --------------------------------------- */ | /* Particles. --------------------------------------- */ | ||||
| /* Particle System evaluation. */ | /* Particle System evaluation. */ | ||||
| DEG_OPCODE_PARTICLE_SYSTEM_EVAL_INIT, | DEG_OPCODE_PARTICLE_SYSTEM_EVAL_INIT, | ||||
| DEG_OPCODE_PARTICLE_SYSTEM_EVAL, | DEG_OPCODE_PARTICLE_SYSTEM_EVAL, | ||||
| DEG_OPCODE_PARTICLE_SETTINGS_EVAL, | DEG_OPCODE_PARTICLE_SETTINGS_EVAL, | ||||
| /* Point Cache. ------------------------------------- */ | /* Point Cache. ------------------------------------- */ | ||||
| ▲ Show 20 Lines • Show All 44 Lines • Show Last 20 Lines | |||||