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:
authorPablo Dobarro <pablodp606@gmail.com>2019-11-21 22:18:04 +0300
committerPablo Dobarro <pablodp606@gmail.com>2019-11-21 22:22:03 +0300
commitf903835370bca79a7a0a287f6246b2d107fbe6d9 (patch)
tree6b3b0d981b46c502638035ce96ee00a78442da1d /source/blender/editors/sculpt_paint/sculpt.c
parenta482d940bc16d02e03ac6adf0d24c281ca99a2fa (diff)
Fix Windows Build
I forgot to change the old BLI_task functions for the new BKE_pbvh functions in Topology Slide/Relax.
Diffstat (limited to 'source/blender/editors/sculpt_paint/sculpt.c')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index ff559acf361..9ae91947a38 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -3269,11 +3269,11 @@ static void do_topology_brush(Sculpt *sd, Object *ob, PBVHNode **nodes, int totn
BKE_pbvh_parallel_range_settings(&settings, (sd->flags & SCULPT_USE_OPENMP), totnode);
if (ss->cache->alt_smooth) {
for (int i = 0; i < 4; i++) {
- BLI_task_parallel_range(0, totnode, &data, do_topology_relax_task_cb_ex, &settings);
+ BKE_pbvh_parallel_range(0, totnode, &data, do_topology_relax_task_cb_ex, &settings);
}
}
else {
- BLI_task_parallel_range(0, totnode, &data, do_topology_slide_task_cb_ex, &settings);
+ BKE_pbvh_parallel_range(0, totnode, &data, do_topology_slide_task_cb_ex, &settings);
}
}