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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2016-01-17 00:25:52 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2016-01-17 00:28:32 +0300
commitcdaf5ac96789f83eccdc26452c2e92edee602fa5 (patch)
tree59ad882f367615e7f6854632bd64b030fe7bd29b /source/blender/editors/sculpt_paint
parent05734d57e1be749973ab4eb6bdafe9daa6c5b899 (diff)
Fix incorrect function for sculpt multithreading task after recent refactor.
Diffstat (limited to 'source/blender/editors/sculpt_paint')
-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 3ecc21de97f..602fe686e7e 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -1564,7 +1564,7 @@ typedef struct SculptDoBrushSmoothGridDataChunk {
size_t tmpgrid_size;
} SculptDoBrushSmoothGridDataChunk;
-static void do_smooth_brush_mesh_task_cb(void *userdata, void *UNUSED(userdata_chunk), int n)
+static void do_smooth_brush_mesh_task_cb(void *userdata, int n)
{
SculptThreadedTaskData *data = userdata;
SculptSession *ss = data->ob->sculpt;
@@ -1610,7 +1610,7 @@ static void do_smooth_brush_mesh_task_cb(void *userdata, void *UNUSED(userdata_c
BKE_pbvh_vertex_iter_end;
}
-static void do_smooth_brush_bmesh_task_cb(void *userdata, void *UNUSED(userdata_chunk), int n)
+static void do_smooth_brush_bmesh_task_cb(void *userdata, int n)
{
SculptThreadedTaskData *data = userdata;
SculptSession *ss = data->ob->sculpt;