This commit is contained in:
twinaphex 2017-11-07 11:06:18 +01:00
parent a7cd8d94b0
commit 00d52a4783
3 changed files with 4 additions and 12 deletions

View File

@ -1359,7 +1359,7 @@ static bool gl_frame(void *data, const void *frame,
#endif
/* Set prev textures. */
gl_renderchain_bind_prev_texture(gl, &gl->tex_info);
gl2_renderchain_bind_prev_texture(gl, &gl->tex_info);
#if defined(HAVE_MENU)
if (gl->menu_texture_enable)

View File

@ -79,7 +79,7 @@ void gl_set_viewport(
bool force_full, bool allow_rotate);
#ifdef HAVE_FBO
void gl2_renderchain_convert_geometry(
static void gl2_renderchain_convert_geometry(
void *data,
struct video_fbo_rect *fbo_rect,
struct gfx_fbo_scale *fbo_scale,
@ -927,7 +927,7 @@ static bool gl2_renderchain_init_hw_render(
#endif
void gl_renderchain_bind_prev_texture(
void gl2_renderchain_bind_prev_texture(
void *data,
const struct video_tex_info *tex_info)
{

View File

@ -25,15 +25,7 @@
RETRO_BEGIN_DECLS
void gl2_renderchain_convert_geometry(
void *data,
struct video_fbo_rect *fbo_rect,
struct gfx_fbo_scale *fbo_scale,
unsigned last_width, unsigned last_max_width,
unsigned last_height, unsigned last_max_height,
unsigned vp_width, unsigned vp_height);
void gl_renderchain_bind_prev_texture(
void gl2_renderchain_bind_prev_texture(
void *data,
const struct video_tex_info *tex_info);