Depsgraph: Add base flag flush operation definition

This commit is contained in:
Sergey Sharybin
2017-11-24 10:08:30 +01:00
parent 1949ed558b
commit d2679b3e42
2 changed files with 5 additions and 0 deletions

View File

@@ -105,6 +105,8 @@ static const char *stringify_opcode(eDepsOperation_Code opcode)
/* Animation, Drivers, etc. */
STRINGIFY_OPCODE(ANIMATION);
STRINGIFY_OPCODE(DRIVER);
/* Object related. */
STRINGIFY_OPCODE(OBJECT_BASE_FLAGS);
/* Transform. */
STRINGIFY_OPCODE(TRANSFORM_LOCAL);
STRINGIFY_OPCODE(TRANSFORM_PARENT);

View File

@@ -170,6 +170,9 @@ typedef enum eDepsOperation_Code {
/* Driver */
DEG_OPCODE_DRIVER,
/* Object related. --------------------------------- */
DEG_OPCODE_OBJECT_BASE_FLAGS,
/* Transform. -------------------------------------- */
/* Transform entry point - local transforms only */
DEG_OPCODE_TRANSFORM_LOCAL,