(GL) Make gl_deinit_fbo a static function again

This commit is contained in:
twinaphex 2014-10-02 12:55:19 +02:00
parent 486dc3adec
commit c574025370
2 changed files with 1 additions and 3 deletions

View File

@ -611,7 +611,7 @@ error:
return false;
}
void gl_deinit_fbo(gl_t *gl)
static void gl_deinit_fbo(gl_t *gl)
{
if (!gl->fbo_inited)
return;

View File

@ -385,7 +385,5 @@ void gl_set_viewport(gl_t *gl, unsigned width, unsigned height,
void gl_shader_set_coords(gl_t *gl,
const struct gl_coords *coords, const math_matrix *mat);
void gl_deinit_fbo(gl_t *gl);
#endif