Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2017-12-21 13:47:34 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-12-21 13:47:34 +0300
commit681a1028004342c739f056c51443516b9b49b38a (patch)
tree6500e256081882d3af1ce455c704ea1983cc9e66 /source/blender/depsgraph/intern/nodes/deg_node.h
parent5df49500731a4d36230477e82b45278902437ded (diff)
Depsgraph: Remove one of temporary tags in the node
No real reason to have that, better to free up space for something much more awesome!
Diffstat (limited to 'source/blender/depsgraph/intern/nodes/deg_node.h')
-rw-r--r--source/blender/depsgraph/intern/nodes/deg_node.h17
1 files changed, 5 insertions, 12 deletions
diff --git a/source/blender/depsgraph/intern/nodes/deg_node.h b/source/blender/depsgraph/intern/nodes/deg_node.h
index b303b5ba010..79464ae5fa7 100644
--- a/source/blender/depsgraph/intern/nodes/deg_node.h
+++ b/source/blender/depsgraph/intern/nodes/deg_node.h
@@ -63,18 +63,11 @@ struct DepsNode {
*/
typedef vector<DepsRelation *> Relations;
- /* Identifier - mainly for debugging purposes. */
- const char *name;
- /* Structural type of node. */
- eDepsNode_Type type;
- /* Nodes which this one depends on. */
- Relations inlinks;
- /* Nodes which depend on this one. */
- Relations outlinks;
-
- /* Generic tags for traversal algorithms. */
- int done;
- int tag;
+ const char *name; /* Identifier - mainly for debugging purposes. */
+ eDepsNode_Type type; /* Structural type of node. */
+ Relations inlinks; /* Nodes which this one depends on. */
+ Relations outlinks; /* Nodes which depend on this one. */
+ int done; /* Generic tags for traversal algorithms. */
/* Methods. */
DepsNode();