Fix missing clear of ID types tags

Got lost in previous optimization commit.
This commit is contained in:
Sergey Sharybin 2019-10-09 09:38:11 +02:00
parent d3d6cd2e09
commit 340b9c1dfc
Notes: blender-bot 2023-02-14 08:06:33 +01:00
Referenced by issue #72968, simply moving the render window is terribly slow
Referenced by issue #70664, Viewport - infinite rendering loop
Referenced by issue #70657, Anti-Aliasing problem
Referenced by issue #70661, Cycles in viewport stuck on initializing indefinitely
1 changed files with 1 additions and 0 deletions

View File

@ -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));
}