yuzu/yuzu_cmd: Add checks for required extension ARB_copy_image.
This commit is contained in:
parent
26348d6ebb
commit
44b42fa9e8
2 changed files with 4 additions and 0 deletions
|
@ -98,6 +98,8 @@ bool EmuWindow_SDL2::SupportsRequiredGLExtensions() {
|
|||
unsupported_ext.push_back("ARB_texture_storage");
|
||||
if (!GLAD_GL_ARB_multi_bind)
|
||||
unsupported_ext.push_back("ARB_multi_bind");
|
||||
if (!GLAD_GL_ARB_copy_image)
|
||||
unsupported_ext.push_back("ARB_copy_image");
|
||||
|
||||
// Extensions required to support some texture formats.
|
||||
if (!GLAD_GL_EXT_texture_compression_s3tc)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue