Depsgraph: Don't use push-from-thread when scheduling graph

This isn't guaranteed that graph is scheduled from main thread,
so it is actually a miracle how it all worked.
This commit is contained in:
Sergey Sharybin 2019-10-10 11:00:14 +02:00
parent 2251c6e046
commit f9b7f3e930
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ static void schedule_node(
static void schedule_graph(TaskPool *pool, Depsgraph *graph)
{
for (OperationNode *node : graph->operations) {
schedule_node(pool, graph, node, false, 0);
schedule_node(pool, graph, node, false, -1);
}
}