mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
Fix VG and VC EGL
This commit is contained in:
parent
532fd88e2f
commit
00590f2077
@ -127,6 +127,8 @@ static void *vg_init(const video_info_t *video,
|
|||||||
const gfx_ctx_driver_t *ctx = video_context_driver_init_first(
|
const gfx_ctx_driver_t *ctx = video_context_driver_init_first(
|
||||||
vg, settings->arrays.video_context_driver,
|
vg, settings->arrays.video_context_driver,
|
||||||
GFX_CTX_OPENVG_API, 0, 0, false, &ctx_data);
|
GFX_CTX_OPENVG_API, 0, 0, false, &ctx_data);
|
||||||
|
bool adaptive_vsync_enabled = video_driver_test_all_flags(
|
||||||
|
GFX_CTX_FLAGS_ADAPTIVE_VSYNC) && video->adaptive_vsync;
|
||||||
|
|
||||||
if (!vg || !ctx)
|
if (!vg || !ctx)
|
||||||
goto error;
|
goto error;
|
||||||
@ -153,8 +155,6 @@ static void *vg_init(const video_info_t *video,
|
|||||||
|
|
||||||
if (ctx->swap_interval)
|
if (ctx->swap_interval)
|
||||||
{
|
{
|
||||||
bool adaptive_vsync_enabled = video_driver_test_all_flags(
|
|
||||||
GFX_CTX_FLAGS_ADAPTIVE_VSYNC) && video->adaptive_vsync;
|
|
||||||
if (adaptive_vsync_enabled && interval == 1)
|
if (adaptive_vsync_enabled && interval == 1)
|
||||||
interval = -1;
|
interval = -1;
|
||||||
ctx->swap_interval(vg->ctx_data, interval);
|
ctx->swap_interval(vg->ctx_data, interval);
|
||||||
@ -221,10 +221,10 @@ static void *vg_init(const video_info_t *video,
|
|||||||
vg->mTexType,
|
vg->mTexType,
|
||||||
vg->mTextureWidth,
|
vg->mTextureWidth,
|
||||||
vg->mTextureHeight,
|
vg->mTextureHeight,
|
||||||
video->smooth
|
video->smooth
|
||||||
? VG_IMAGE_QUALITY_BETTER
|
? VG_IMAGE_QUALITY_BETTER
|
||||||
: VG_IMAGE_QUALITY_NONANTIALIASED);
|
: VG_IMAGE_QUALITY_NONANTIALIASED);
|
||||||
vg_set_nonblock_state(vg, !video->vsync);
|
vg_set_nonblock_state(vg, !video->vsync, adaptive_vsync_enabled, interval);
|
||||||
|
|
||||||
inp.input = input;
|
inp.input = input;
|
||||||
inp.input_data = input_data;
|
inp.input_data = input_data;
|
||||||
|
@ -180,7 +180,6 @@ static void *gfx_ctx_vc_init(void *video_driver)
|
|||||||
EGL_NONE
|
EGL_NONE
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
settings_t *settings = config_get_ptr();
|
|
||||||
vc_ctx_data_t *vc = NULL;
|
vc_ctx_data_t *vc = NULL;
|
||||||
unsigned fullscreen_x = settings->uints.video_fullscreen_x;
|
unsigned fullscreen_x = settings->uints.video_fullscreen_x;
|
||||||
unsigned fullscreen_y = settings->uints.video_fullscreen_y;
|
unsigned fullscreen_y = settings->uints.video_fullscreen_y;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user