From bcaa24cf7b1221f7d84a7c719020bdc301dde82d Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 19 Jul 2017 17:49:24 +0100 Subject: [PATCH] Add this check back in --- libretro-common/gfx/gl_capabilities.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-common/gfx/gl_capabilities.c b/libretro-common/gfx/gl_capabilities.c index 570d164a29..41c574e485 100644 --- a/libretro-common/gfx/gl_capabilities.c +++ b/libretro-common/gfx/gl_capabilities.c @@ -300,7 +300,7 @@ bool gl_check_capability(enum gl_capability_enum enum_idx) case GL_CAPS_BGRA8888: #ifdef HAVE_OPENGLES /* There are both APPLE and EXT variants. */ - if (gl_query_extension("BGRA8888")) + if (gl_query_extension("BGRA8888") && !strstr(renderer, "VideoCore")) return true; #else return true;