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-04-15 10:35:31 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-04-15 10:36:30 +0300
commite17bee5b7f71af2e170ac692427ff509a55f7ecf (patch)
tree790f1f1f8d015cfff97d321b70f112641d192019 /source/blender/editors/sculpt_paint
parent44b9f6a8885bed381e0b86bec378008490a58511 (diff)
Cleanup: missing-prototypes warning
Diffstat (limited to 'source/blender/editors/sculpt_paint')
-rw-r--r--source/blender/editors/sculpt_paint/paint_cursor.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_cursor.c b/source/blender/editors/sculpt_paint/paint_cursor.c
index 33372a0d7cf..536453ad085 100644
--- a/source/blender/editors/sculpt_paint/paint_cursor.c
+++ b/source/blender/editors/sculpt_paint/paint_cursor.c
@@ -1216,15 +1216,15 @@ static void sculpt_geometry_preview_lines_draw(const uint gpuattr, SculptSession
}
}
-void SCULPT_layer_brush_height_preview_draw(const uint gpuattr,
- const Brush *brush,
- const float obmat[4][4],
- const float location[3],
- const float normal[3],
- const float rds,
- const float line_width,
- const float outline_col[3],
- const float alpha)
+static void SCULPT_layer_brush_height_preview_draw(const uint gpuattr,
+ const Brush *brush,
+ const float obmat[4][4],
+ const float location[3],
+ const float normal[3],
+ const float rds,
+ const float line_width,
+ const float outline_col[3],
+ const float alpha)
{
float cursor_trans[4][4], cursor_rot[4][4];
float z_axis[4] = {0.0f, 0.0f, 1.0f, 0.0f};