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>2019-10-09 10:38:11 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-10-09 10:38:56 +0300
commit340b9c1dfc6e81efc0fb1e1ffff78203ba6aeddc (patch)
tree05db15c4a1c3d209f6a1fb51e140cd51ba969497 /source/blender/depsgraph/intern/depsgraph_tag.cc
parentd3d6cd2e0971eb6293359f1a5c723af6cbb69a96 (diff)
Fix missing clear of ID types tags
Got lost in previous optimization commit.
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph_tag.cc')
-rw-r--r--source/blender/depsgraph/intern/depsgraph_tag.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph_tag.cc b/source/blender/depsgraph/intern/depsgraph_tag.cc
index 77b24d60b10..058ee4e9076 100644
--- a/source/blender/depsgraph/intern/depsgraph_tag.cc
+++ b/source/blender/depsgraph/intern/depsgraph_tag.cc
@@ -828,4 +828,5 @@ void DEG_ids_clear_recalc(Main *UNUSED(bmain), Depsgraph *depsgraph)
deg_graph_clear_id_recalc_flags(id_node->id_orig);
}
}
+ memset(deg_graph->id_type_updated, 0, sizeof(deg_graph->id_type_updated));
}