Cleanup: missing-prototypes warning

This commit is contained in:
Campbell Barton 2020-04-15 17:35:31 +10:00
parent 44b9f6a888
commit e17bee5b7f
1 changed files with 9 additions and 9 deletions

View File

@ -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};