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>2019-08-15 09:39:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-08-15 09:55:48 +0300
commit1ddc12ceb922241d485ac9a1842c4c6f3d4ab300 (patch)
treee71240fe2fa0a5015d4517ad992a4aa044a13328
parentbb2394a29889157a330bd1064d248c04055b117c (diff)
Cleanup: unused warnings
Reminder not to leave in unused code, or comment why it should be kept.
-rw-r--r--source/blender/editors/sculpt_paint/sculpt.c27
1 files changed, 16 insertions, 11 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index cdd82b8ced3..4b47c521ca9 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -96,6 +96,9 @@
/* Do not use these functions while working with PBVH_GRIDS data in SculptSession */
+/* TODO: why is this kept, should it be removed? */
+#if 0 /* UNUSED */
+
static int sculpt_active_vertex_get(SculptSession *ss)
{
switch (BKE_pbvh_type(ss->pbvh)) {
@@ -206,7 +209,7 @@ static void sculpt_vertex_tag_update(SculptSession *ss, int index)
}
}
-#define SCULPT_VERTEX_NEIGHBOUR_FIXED_CAPACITY 256
+# define SCULPT_VERTEX_NEIGHBOUR_FIXED_CAPACITY 256
typedef struct SculptVertexNeighbourIter {
int *neighbours;
@@ -309,17 +312,19 @@ static void sculpt_vertex_neighbours_get(SculptSession *ss,
}
}
-#define sculpt_vertex_neighbours_iter_begin(ss, v_index, neighbour_iterator) \
- sculpt_vertex_neighbours_get(ss, v_index, &neighbour_iterator); \
- for (neighbour_iterator.i = 0; neighbour_iterator.i < neighbour_iterator.size; \
- neighbour_iterator.i++) { \
- neighbour_iterator.index = ni.neighbours[ni.i];
+# define sculpt_vertex_neighbours_iter_begin(ss, v_index, neighbour_iterator) \
+ sculpt_vertex_neighbours_get(ss, v_index, &neighbour_iterator); \
+ for (neighbour_iterator.i = 0; neighbour_iterator.i < neighbour_iterator.size; \
+ neighbour_iterator.i++) { \
+ neighbour_iterator.index = ni.neighbours[ni.i];
-#define sculpt_vertex_neighbours_iter_end(neighbour_iterator) \
- } \
- if (neighbour_iterator.neighbours != neighbour_iterator.neighbours_fixed) { \
- MEM_freeN(neighbour_iterator.neighbours); \
- }
+# define sculpt_vertex_neighbours_iter_end(neighbour_iterator) \
+ } \
+ if (neighbour_iterator.neighbours != neighbour_iterator.neighbours_fixed) { \
+ MEM_freeN(neighbour_iterator.neighbours); \
+ }
+
+#endif /* UNUSED */
/** \name Tool Capabilities
*