Cleanup: spelling

This commit is contained in:
2014-10-23 10:38:14 +02:00
parent 88fe896243
commit eaaeae4699
7 changed files with 10 additions and 10 deletions

View File

@@ -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,