From f6b273e1be444eaa708010357b39813a6eee8ba8 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 8 Nov 2016 19:11:54 +0100 Subject: [PATCH] (Desktop GL) GL_CAPS_BGRA8888 - return true by default --- 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 8f47d52372..e27c9e0b62 100644 --- a/libretro-common/gfx/gl_capabilities.c +++ b/libretro-common/gfx/gl_capabilities.c @@ -303,7 +303,7 @@ bool gl_check_capability(enum gl_capability_enum enum_idx) if (gl_query_extension("BGRA8888") && !strstr(renderer, "VideoCore")) return true; #else - /* TODO/FIXME - implement this for non-GLES? */ + return true; #endif break; case GL_CAPS_NONE: