From cf2e35fcfe31aa2c1836f51d1206901b4be6aeba Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 4 Dec 2018 16:04:10 +0100 Subject: Fix T58118: Make duplicates real does nothing The issue was caused by transflag set in geometry evaluation never copied back top original object. Now we have a dedicated operation which does all sort copy back to original object, so we don't have to worry about atomic assignments or what gets set where. Still need to move boundbox to the same function, but it needs some careful doublechecking first. --- source/blender/depsgraph/intern/debug/deg_debug_relations_graphviz.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/depsgraph/intern/debug/deg_debug_relations_graphviz.cc') diff --git a/source/blender/depsgraph/intern/debug/deg_debug_relations_graphviz.cc b/source/blender/depsgraph/intern/debug/deg_debug_relations_graphviz.cc index ec1ea1e02b2..55eaf314a0a 100644 --- a/source/blender/depsgraph/intern/debug/deg_debug_relations_graphviz.cc +++ b/source/blender/depsgraph/intern/debug/deg_debug_relations_graphviz.cc @@ -421,6 +421,7 @@ static void deg_debug_graphviz_node(const DebugContext &ctx, case DEG_NODE_TYPE_OBJECT_FROM_LAYER: case DEG_NODE_TYPE_BATCH_CACHE: case DEG_NODE_TYPE_DUPLI: + case DEG_NODE_TYPE_SYNCHRONIZE: { ComponentDepsNode *comp_node = (ComponentDepsNode *)node; if (!comp_node->operations.empty()) { -- cgit v1.2.3