Revert "Create wrapper gfx_ctx_check_window"

This reverts commit 4d3b1872313894101bf05cd69215ecc55ebe8bb2.
This commit is contained in:
twinaphex 2015-04-09 22:38:11 +02:00
parent 4d3b187231
commit 0df3f13fc9
3 changed files with 7 additions and 21 deletions

View File

@ -2469,11 +2469,16 @@ static bool gl_alive(void *data)
{
bool quit = false, resize = false;
gl_t *gl = (gl_t*)data;
runloop_t *runloop = rarch_main_get_ptr();
const gfx_ctx_driver_t *ctx = gfx_ctx_get_ptr();
if (gfx_ctx_check_window(gl, &quit,
&resize, &gl->win_width, &gl->win_height))
if (!gl)
return false;
ctx->check_window(gl, &quit,
&resize, &gl->win_width, &gl->win_height,
runloop->frames.video.count);
if (quit)
gl->quitting = true;
else if (resize)

View File

@ -82,22 +82,6 @@ const gfx_ctx_driver_t *gfx_ctx_get_ptr(void)
return (const gfx_ctx_driver_t*)driver->video_context;
}
bool gfx_ctx_check_window(void *data, bool *quit,
bool *resize, unsigned *width, unsigned *height)
{
const gfx_ctx_driver_t *ctx = gfx_ctx_get_ptr();
runloop_t *runloop = rarch_main_get_ptr();
if (!data)
return false;
ctx->check_window(data, quit, resize,
width, height,
runloop->frames.video.count);
return true;
}
void gfx_ctx_swap_buffers(void *data)
{
const gfx_ctx_driver_t *ctx = gfx_ctx_get_ptr();

View File

@ -215,9 +215,6 @@ void gfx_ctx_swap_buffers(void *data);
bool gfx_ctx_focus(void *data);
bool gfx_ctx_check_window(void *data, bool *quit,
bool *resize, unsigned *width, unsigned *height);
#ifdef __cplusplus
}
#endif