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:
authorJacques Lucke <jacques@blender.org>2021-06-08 11:43:57 +0300
committerJacques Lucke <jacques@blender.org>2021-06-08 11:43:57 +0300
commit933c2cffd6407008671d9ba942109377bbf26f2e (patch)
treeccc33218b23e6fe51a3f20dab63d0e343abc6f6c /source/blender/modifiers
parented1fc9d96bbac2ac3d4282400a9717e19e84211d (diff)
Geometry Nodes: enable multi-threading in evaluator again
This reverts rB223c6e1ead2940a89465ff66765d16ac14a992b7 because T88598 is resolved now.
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_nodes_evaluator.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/modifiers/intern/MOD_nodes_evaluator.cc b/source/blender/modifiers/intern/MOD_nodes_evaluator.cc
index 10ef2f4d8eb..27d3da911a1 100644
--- a/source/blender/modifiers/intern/MOD_nodes_evaluator.cc
+++ b/source/blender/modifiers/intern/MOD_nodes_evaluator.cc
@@ -380,8 +380,7 @@ class GeometryNodesEvaluator {
void execute()
{
- /* Disable threading until T88598 is resolved. */
- task_pool_ = BLI_task_pool_create_no_threads(this);
+ task_pool_ = BLI_task_pool_create(this, TASK_PRIORITY_HIGH, TASK_ISOLATION_OFF);
this->create_states_for_reachable_nodes();
this->forward_group_inputs();