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:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-09-24 14:30:15 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-09-24 16:55:02 +0300
commita7c96a7aa6b5496213ccf02af14b48d9d8ddadea (patch)
treef47f1a5ffc8ada51d88d28db6d86a4dff928866b /source/blender
parent8dfdd248b54b76c4a45db6f253398bc621142b42 (diff)
Cleanup: Spelling
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/depsgraph/intern/eval/deg_eval.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/depsgraph/intern/eval/deg_eval.cc b/source/blender/depsgraph/intern/eval/deg_eval.cc
index db6ab21b9a6..5303d405489 100644
--- a/source/blender/depsgraph/intern/eval/deg_eval.cc
+++ b/source/blender/depsgraph/intern/eval/deg_eval.cc
@@ -99,9 +99,9 @@ static void deg_task_run_func(TaskPool *pool,
BLI_task_pool_delayed_push_end(pool, thread_id);
}
-typedef struct CalculatePengindData {
+typedef struct CalculatePendingData {
Depsgraph *graph;
-} CalculatePengindData;
+} CalculatePendingData;
static bool check_operation_node_visible(OperationDepsNode *op_node)
{
@@ -120,7 +120,7 @@ static void calculate_pending_func(
const int i,
const ParallelRangeTLS *__restrict /*tls*/)
{
- CalculatePengindData *data = (CalculatePengindData *)data_v;
+ CalculatePendingData *data = (CalculatePendingData *)data_v;
Depsgraph *graph = data->graph;
OperationDepsNode *node = graph->operations[i];
/* Update counters, applies for both visible and invisible IDs. */
@@ -159,7 +159,7 @@ static void calculate_pending_func(
static void calculate_pending_parents(Depsgraph *graph)
{
const int num_operations = graph->operations.size();
- CalculatePengindData data;
+ CalculatePendingData data;
data.graph = graph;
ParallelRangeSettings settings;
BLI_parallel_range_settings_defaults(&settings);