mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
(D3D) Start using gfx_ctx wrapper functions
This commit is contained in:
parent
89bdccad4d
commit
5fff3d0879
@ -336,15 +336,13 @@ static void d3d_set_nonblock_state(void *data, bool state)
|
|||||||
|
|
||||||
static bool d3d_alive(void *data)
|
static bool d3d_alive(void *data)
|
||||||
{
|
{
|
||||||
d3d_video_t *d3d = (d3d_video_t*)data;
|
d3d_video_t *d3d = (d3d_video_t*)data;
|
||||||
bool quit = false;
|
bool quit = false;
|
||||||
bool resize = false;
|
bool resize = false;
|
||||||
runloop_t *runloop = rarch_main_get_ptr();
|
|
||||||
const gfx_ctx_driver_t *ctx = gfx_ctx_get_ptr();
|
|
||||||
|
|
||||||
if (ctx && ctx->check_window)
|
if (!gfx_ctx_check_window(d3d, &quit, &resize,
|
||||||
ctx->check_window(d3d, &quit, &resize,
|
&d3d->screen_width, &d3d->screen_height))
|
||||||
&d3d->screen_width, &d3d->screen_height, runloop->frames.video.count);
|
return false;
|
||||||
|
|
||||||
if (quit)
|
if (quit)
|
||||||
d3d->quitting = quit;
|
d3d->quitting = quit;
|
||||||
@ -361,22 +359,12 @@ static bool d3d_focus(void *data)
|
|||||||
|
|
||||||
static bool d3d_suppress_screensaver(void *data, bool enable)
|
static bool d3d_suppress_screensaver(void *data, bool enable)
|
||||||
{
|
{
|
||||||
d3d_video_t *d3d = (d3d_video_t*)data;
|
return gfx_ctx_suppress_screensaver(data, enable);
|
||||||
const gfx_ctx_driver_t *ctx = gfx_ctx_get_ptr();
|
|
||||||
|
|
||||||
if (d3d && ctx && ctx->suppress_screensaver)
|
|
||||||
return ctx->suppress_screensaver(d3d, enable);
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool d3d_has_windowed(void *data)
|
static bool d3d_has_windowed(void *data)
|
||||||
{
|
{
|
||||||
d3d_video_t *d3d = (d3d_video_t*)data;
|
return gfx_ctx_has_windowed(data);
|
||||||
const gfx_ctx_driver_t *ctx = gfx_ctx_get_ptr();
|
|
||||||
|
|
||||||
if (d3d && ctx && ctx->has_windowed)
|
|
||||||
return ctx->has_windowed(d3d);
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void d3d_set_aspect_ratio(void *data, unsigned aspect_ratio_idx)
|
static void d3d_set_aspect_ratio(void *data, unsigned aspect_ratio_idx)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user