iOS: Fix xrgb8888 in gl driver (#16013)

This commit is contained in:
Eric Warmenhoven 2023-12-18 04:18:03 -05:00 committed by GitHub
parent 437d9ddbf1
commit 0c1ee70ca0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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