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:
authorCampbell Barton <ideasman42@gmail.com>2020-03-27 03:23:22 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-27 03:28:46 +0300
commitc8b85d32c53aa0da13731274bec5c3788ba48d9c (patch)
tree3af9df79b110ed0d4b2ba7a59531b1300db4503b /source/blender/editors/sculpt_paint/sculpt.c
parented86f3edb699445c6df99235662a45595fdb266b (diff)
Cleanup: quiet unused function warning
Diffstat (limited to 'source/blender/editors/sculpt_paint/sculpt.c')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index 2f8ed929a1b..a15a8263a3b 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -426,7 +426,8 @@ void SCULPT_visibility_sync_all_face_sets_to_vertices(SculptSession *ss)
}
}
-static void sculpt_visibility_sync_vertex_to_face_sets(SculptSession *ss, int index)
+static void UNUSED_FUNCTION(sculpt_visibility_sync_vertex_to_face_sets)(SculptSession *ss,
+ int index)
{
MeshElemMap *vert_map = &ss->pmap[index];
const bool visible = SCULPT_vertex_visible_get(ss, index);