mesa/st: Make st_pipe_vertex_format static.
authorMathias Fröhlich <mathias.froehlich@web.de>
Thu, 1 Nov 2018 18:03:26 +0000 (19:03 +0100)
committerMathias Fröhlich <Mathias.Froehlich@gmx.net>
Mon, 26 Nov 2018 06:57:10 +0000 (07:57 +0100)
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Signed-off-by: Mathias Fröhlich <Mathias.Froehlich@web.de>
src/mesa/state_tracker/st_atom.h
src/mesa/state_tracker/st_atom_array.c

index d36f0180faf6b24954694a5e96f30b8612adcb90..ccf58b10e9e954b7501fdb41c6ef5828dcac6005 100644 (file)
@@ -58,9 +58,6 @@ void st_destroy_atoms( struct st_context *st );
 void st_validate_state( struct st_context *st, enum st_pipeline pipeline );
 GLuint st_compare_func_to_pipe(GLenum func);
 
-enum pipe_format
-st_pipe_vertex_format(const struct gl_vertex_format *glformat);
-
 void
 st_setup_arrays(struct st_context *st,
                 const struct st_vertex_program *vp,
index 1073e76c3e46cbc8c5a7d650ecd53b67572c1be3..7a63d7504f37cb915206976cc85e44d7cee0e2c8 100644 (file)
@@ -237,7 +237,7 @@ static const uint16_t vertex_formats[][4][4] = {
 /**
  * Return a PIPE_FORMAT_x for the given GL datatype and size.
  */
-enum pipe_format
+static enum pipe_format
 st_pipe_vertex_format(const struct gl_vertex_format *vformat)
 {
    const GLubyte size = vformat->Size;