[Bf-blender-cvs] [a7c96a7aa6b] blender2.8: Cleanup: Spelling

Sergey Sharybin noreply at git.blender.org
Mon Sep 24 15:58:47 CEST 2018


Commit: a7c96a7aa6b5496213ccf02af14b48d9d8ddadea
Author: Sergey Sharybin
Date:   Mon Sep 24 13:30:15 2018 +0200
Branches: blender2.8
https://developer.blender.org/rBa7c96a7aa6b5496213ccf02af14b48d9d8ddadea

Cleanup: Spelling

===================================================================

M	source/blender/depsgraph/intern/eval/deg_eval.cc

===================================================================

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);



More information about the Bf-blender-cvs mailing list