From 0c1ee70ca03e872239c0467530ddf35a6f99906b Mon Sep 17 00:00:00 2001 From: Eric Warmenhoven Date: Mon, 18 Dec 2023 04:18:03 -0500 Subject: [PATCH] iOS: Fix xrgb8888 in gl driver (#16013) --- gfx/drivers/gl2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/drivers/gl2.c b/gfx/drivers/gl2.c index 59a90025d44..ffa6e5a9ddd 100644 --- a/gfx/drivers/gl2.c +++ b/gfx/drivers/gl2.c @@ -1179,7 +1179,7 @@ static void gl2_load_texture_image(GLenum target, GLenum type, const GLvoid * data) { -#if !defined(HAVE_PSGL) && !defined(ORBIS) && !defined(VITA) +#if !defined(HAVE_PSGL) && !defined(ORBIS) && !defined(VITA) && !defined(IOS) #ifdef HAVE_OPENGLES2 enum gl_capability_enum cap = GL_CAPS_TEX_STORAGE_EXT; #else