Skip to content

Commit

Permalink
iOS: Fix xrgb8888 in gl driver (#16013)
Browse files Browse the repository at this point in the history
  • Loading branch information
warmenhoven authored Dec 18, 2023
1 parent 437d9dd commit 0c1ee70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gfx/drivers/gl2.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0c1ee70

Please sign in to comment.