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-16 16:16:04 +0300
committerJacques Lucke <jacques@blender.org>2021-06-16 16:16:04 +0300
commit4b7eae5cd3f01fceca7150e9837347d1e5a66ca2 (patch)
tree3ddb72f261ab69b5daa4a4d6c089a43e5cc2e5e1 /source/blender/depsgraph
parent1172c0ae4463ee3e1926d7d8d8037294e37f649b (diff)
parent94084b2d3c5d151dc6ab19c9868813ac5eacf336 (diff)
Merge branch 'master' into temp-attribute-processor
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/intern/eval/deg_eval.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/depsgraph/intern/eval/deg_eval.cc b/source/blender/depsgraph/intern/eval/deg_eval.cc
index 2107e075139..620e86550cc 100644
--- a/source/blender/depsgraph/intern/eval/deg_eval.cc
+++ b/source/blender/depsgraph/intern/eval/deg_eval.cc
@@ -353,8 +353,7 @@ static TaskPool *deg_evaluate_task_pool_create(DepsgraphEvalState *state)
return BLI_task_pool_create_no_threads(state);
}
- /* TODO: Disable task isolation. */
- return BLI_task_pool_create_suspended(state, TASK_PRIORITY_HIGH, TASK_ISOLATION_ON);
+ return BLI_task_pool_create_suspended(state, TASK_PRIORITY_HIGH);
}
/**