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:
Diffstat (limited to 'source/blender/blenlib/intern/task.c')
-rw-r--r--source/blender/blenlib/intern/task.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/task.c b/source/blender/blenlib/intern/task.c
index 3a49abc7060..07c67f001f9 100644
--- a/source/blender/blenlib/intern/task.c
+++ b/source/blender/blenlib/intern/task.c
@@ -496,7 +496,7 @@ void BLI_task_parallel_range_ex(
BLI_assert(start < stop);
- /* If it's not enough data to be cranched, don't bother with tasks at all,
+ /* If it's not enough data to be crunched, don't bother with tasks at all,
* do everything from the main thread.
*/
if (stop - start < range_threshold) {
@@ -518,7 +518,7 @@ void BLI_task_parallel_range_ex(
/* The idea here is to prevent creating task for each of the loop iterations
* and instead have tasks which are evenly distributed across CPU cores and
- * pull next iter to be cranched using the queue.
+ * pull next iter to be crunched using the queue.
*/
for (i = 0; i < 2 * BLI_task_scheduler_num_threads(task_scheduler); i++) {
BLI_task_pool_push(task_pool,