From c5cb86a47e981e4c55678b05c89d9cb2deceac8b Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 3 Dec 2014 18:31:43 +0100 Subject: [PATCH] Get rid of unneeded HAVE_OPENGLES3 ifdef --- gfx/context/androidegl_ctx.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/gfx/context/androidegl_ctx.c b/gfx/context/androidegl_ctx.c index dceff4216e..84af26b36e 100644 --- a/gfx/context/androidegl_ctx.c +++ b/gfx/context/androidegl_ctx.c @@ -310,12 +310,10 @@ static bool android_gfx_ctx_bind_api(void *data, unsigned version = major * 100 + minor; if (version > 300) return false; -#ifdef HAVE_OPENGLES3 if (version < 300) g_es3 = false; else if (version == 300) g_es3 = true; -#endif return api == GFX_CTX_OPENGL_ES_API; }