summaryrefslogtreecommitdiffstats
path: root/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-10-07 05:18:52 +0200
committerGitHub <noreply@github.com>2018-10-07 05:18:52 +0200
commit2c0b0ad50d71ff3b9a50052362b2ffc5ca7977da (patch)
tree071133d1635b154026565875cc16155ea80e2a58 /src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
parentMerge pull request #1437 from FernandoS27/tex-mode2 (diff)
parentyuzu/yuzu_cmd: Add checks for required extension ARB_copy_image. (diff)
downloadyuzu-2c0b0ad50d71ff3b9a50052362b2ffc5ca7977da.tar
yuzu-2c0b0ad50d71ff3b9a50052362b2ffc5ca7977da.tar.gz
yuzu-2c0b0ad50d71ff3b9a50052362b2ffc5ca7977da.tar.bz2
yuzu-2c0b0ad50d71ff3b9a50052362b2ffc5ca7977da.tar.lz
yuzu-2c0b0ad50d71ff3b9a50052362b2ffc5ca7977da.tar.xz
yuzu-2c0b0ad50d71ff3b9a50052362b2ffc5ca7977da.tar.zst
yuzu-2c0b0ad50d71ff3b9a50052362b2ffc5ca7977da.zip
Diffstat (limited to 'src/yuzu_cmd/emu_window/emu_window_sdl2.cpp')
-rw-r--r--src/yuzu_cmd/emu_window/emu_window_sdl2.cpp2
1 files changed, 2 insertions, 0 deletions
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() {
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)