mirror of
https://github.com/libretro/RetroArch
synced 2025-03-28 19:20:35 +00:00
Merge pull request #4339 from loganmc10/patch-7
Found a combination that doesn't work
This commit is contained in:
commit
62b79a28b4
@ -100,7 +100,7 @@ void gl_load_texture_image(GLenum target,
|
||||
glTexStorage2DEXT(target, 1, internalFormat, width, height);
|
||||
}
|
||||
#else
|
||||
if (gl_check_capability(GL_CAPS_TEX_STORAGE))
|
||||
if (gl_check_capability(GL_CAPS_TEX_STORAGE) && internalFormat != GL_BGRA_EXT)
|
||||
{
|
||||
gl_size_format(&internalFormat);
|
||||
glTexStorage2D(target, 1, internalFormat, width, height);
|
||||
|
Loading…
x
Reference in New Issue
Block a user