summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/main.cpp2
-rw-r--r--src/yuzu_cmd/emu_window/emu_window_sdl2.cpp2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index ad62a82d0..e11833c5a 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -485,6 +485,8 @@ QStringList GMainWindow::GetUnsupportedGLExtensions() {
485 unsupported_ext.append("ARB_texture_storage"); 485 unsupported_ext.append("ARB_texture_storage");
486 if (!GLAD_GL_ARB_multi_bind) 486 if (!GLAD_GL_ARB_multi_bind)
487 unsupported_ext.append("ARB_multi_bind"); 487 unsupported_ext.append("ARB_multi_bind");
488 if (!GLAD_GL_ARB_copy_image)
489 unsupported_ext.append("ARB_copy_image");
488 490
489 // Extensions required to support some texture formats. 491 // Extensions required to support some texture formats.
490 if (!GLAD_GL_EXT_texture_compression_s3tc) 492 if (!GLAD_GL_EXT_texture_compression_s3tc)
diff --git a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
index 0733301b2..155095095 100644
--- a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
+++ b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
@@ -98,6 +98,8 @@ bool EmuWindow_SDL2::SupportsRequiredGLExtensions() {
98 unsupported_ext.push_back("ARB_texture_storage"); 98 unsupported_ext.push_back("ARB_texture_storage");
99 if (!GLAD_GL_ARB_multi_bind) 99 if (!GLAD_GL_ARB_multi_bind)
100 unsupported_ext.push_back("ARB_multi_bind"); 100 unsupported_ext.push_back("ARB_multi_bind");
101 if (!GLAD_GL_ARB_copy_image)
102 unsupported_ext.push_back("ARB_copy_image");
101 103
102 // Extensions required to support some texture formats. 104 // Extensions required to support some texture formats.
103 if (!GLAD_GL_EXT_texture_compression_s3tc) 105 if (!GLAD_GL_EXT_texture_compression_s3tc)