[Bf-blender-cvs] [a1aa908a317] master: Depsgraph: Remove placeholder operation

Sergey Sharybin noreply at git.blender.org
Fri Feb 1 15:40:43 CET 2019


Commit: a1aa908a31789209752e9ca5a4869057a28ad94d
Author: Sergey Sharybin
Date:   Fri Feb 1 11:01:12 2019 +0100
Branches: master
https://developer.blender.org/rBa1aa908a31789209752e9ca5a4869057a28ad94d

Depsgraph: Remove placeholder operation

===================================================================

M	source/blender/depsgraph/intern/node/deg_node_operation.cc
M	source/blender/depsgraph/intern/node/deg_node_operation.h

===================================================================

diff --git a/source/blender/depsgraph/intern/node/deg_node_operation.cc b/source/blender/depsgraph/intern/node/deg_node_operation.cc
index 325ced54507..a7b06af3c08 100644
--- a/source/blender/depsgraph/intern/node/deg_node_operation.cc
+++ b/source/blender/depsgraph/intern/node/deg_node_operation.cc
@@ -44,7 +44,6 @@ const char *operationCodeAsString(OperationCode opcode)
 		case OperationCode::OPERATION: return "OPERATION";
 		case OperationCode::ID_PROPERTY: return "ID_PROPERTY";
 		case OperationCode::PARAMETERS_EVAL: return "PARAMETERS_EVAL";
-		case OperationCode::PLACEHOLDER: return "PLACEHOLDER";
 		/* Animation, Drivers, etc. */
 		case OperationCode::ANIMATION: return "ANIMATION";
 		case OperationCode::DRIVER: return "DRIVER";
diff --git a/source/blender/depsgraph/intern/node/deg_node_operation.h b/source/blender/depsgraph/intern/node/deg_node_operation.h
index f010a40b048..4db4b71b04f 100644
--- a/source/blender/depsgraph/intern/node/deg_node_operation.h
+++ b/source/blender/depsgraph/intern/node/deg_node_operation.h
@@ -51,9 +51,6 @@ enum class OperationCode {
 	ID_PROPERTY,
 	PARAMETERS_EVAL,
 
-	// XXX: Placeholder while porting depsgraph code
-	PLACEHOLDER,
-
 	/* Animation, Drivers, etc. --------------------------------------------- */
 	/* NLA + Action */
 	ANIMATION,



More information about the Bf-blender-cvs mailing list