From 1fd32e0ae65fe39eb780a5716852c3905214582f Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 5 Oct 2012 16:13:22 +0200 Subject: [PATCH] (Android) Implement gfx_ctx_set_swap_interval --- gfx/context/androidegl_ctx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/context/androidegl_ctx.c b/gfx/context/androidegl_ctx.c index 310cd119cb..c9d9f0cfe5 100644 --- a/gfx/context/androidegl_ctx.c +++ b/gfx/context/androidegl_ctx.c @@ -71,7 +71,7 @@ static void gfx_ctx_get_available_resolutions(void) static void gfx_ctx_set_swap_interval(unsigned interval) { - (void)interval; + eglSwapInterval(g_egl_dpy, interval); } static void gfx_ctx_destroy(void)