[Bf-blender-cvs] [d050badf122] sculpt-mode-features: Fix naming

Pablo Dobarro noreply at git.blender.org
Wed Apr 10 01:25:24 CEST 2019


Commit: d050badf122b6d14a5b90ca4013bb15593011d15
Author: Pablo Dobarro
Date:   Wed Apr 10 01:25:00 2019 +0200
Branches: sculpt-mode-features
https://developer.blender.org/rBd050badf122b6d14a5b90ca4013bb15593011d15

Fix naming

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

M	source/blender/editors/sculpt_paint/sculpt.c

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

diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index db3b4af1d9c..7f57cc883aa 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -6995,7 +6995,7 @@ EnumPropertyItem prop_mask_filter_types[] = {
 	{0, NULL, 0, NULL, NULL},
 };
 
-static void smooth_flood_fill_task_cb(
+static void mask_filter_task_cb(
         void *__restrict userdata,
         const int i,
         const ParallelRangeTLS *__restrict UNUSED(tls))
@@ -7084,7 +7084,7 @@ static int sculpt_mask_filter_exec(bContext *C, wmOperator *op)
 	BLI_task_parallel_range(
 	            0, totnode,
 	            &data,
-	            smooth_flood_fill_task_cb,
+	            mask_filter_task_cb,
 	            &settings);
 
 	sculpt_undo_push_end();



More information about the Bf-blender-cvs mailing list