From b3e8d6e9cabde1b6c43e90bfa81bbd5d7bdd2631 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 26 Dec 2019 04:05:20 +0100 Subject: [PATCH] Remove this check - hope it solves the PNG inversion color issues with VideoCore GPUs --- 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 8eea056584..620d19528b 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") && !strstr(renderer, "VideoCore")) + if (gl_query_extension("BGRA8888")) return true; #else return true;