From 2ab94ad8d193f8e4c65e761f9b18c3d473fa4f73 Mon Sep 17 00:00:00 2001 From: Hans-Kristian Arntzen Date: Thu, 13 Feb 2014 12:04:08 +0100 Subject: [PATCH] [Android]: Use ALPHA_SIZE 8. Avoids weird 24-bit surfaces ... --- gfx/context/androidegl_ctx.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gfx/context/androidegl_ctx.c b/gfx/context/androidegl_ctx.c index 0d368307d0..72efb60cb9 100644 --- a/gfx/context/androidegl_ctx.c +++ b/gfx/context/androidegl_ctx.c @@ -88,6 +88,7 @@ static bool gfx_ctx_init(void) EGL_BLUE_SIZE, 8, EGL_GREEN_SIZE, 8, EGL_RED_SIZE, 8, + EGL_ALPHA_SIZE, 8, EGL_NONE }; EGLint num_config;