summaryrefslogtreecommitdiffstats
path: root/src/yuzu_cmd
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-19 19:59:41 +0200
committerGitHub <noreply@github.com>2018-08-19 19:59:41 +0200
commitb0eb580931f9d7bf22d36cefc6aaea82b25236f8 (patch)
tree677716069940936f7102608628f6b43de5c9c1df /src/yuzu_cmd
parentMerge pull request #1101 from Subv/ssy_stack (diff)
parentAdded check to see if ARB_texture_mirror_clamp_to_edge is supported (diff)
downloadyuzu-b0eb580931f9d7bf22d36cefc6aaea82b25236f8.tar
yuzu-b0eb580931f9d7bf22d36cefc6aaea82b25236f8.tar.gz
yuzu-b0eb580931f9d7bf22d36cefc6aaea82b25236f8.tar.bz2
yuzu-b0eb580931f9d7bf22d36cefc6aaea82b25236f8.tar.lz
yuzu-b0eb580931f9d7bf22d36cefc6aaea82b25236f8.tar.xz
yuzu-b0eb580931f9d7bf22d36cefc6aaea82b25236f8.tar.zst
yuzu-b0eb580931f9d7bf22d36cefc6aaea82b25236f8.zip
Diffstat (limited to 'src/yuzu_cmd')
-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 e2945b6cf..351dd9225 100644
--- a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
+++ b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
@@ -89,6 +89,8 @@ bool EmuWindow_SDL2::SupportsRequiredGLExtensions() {
unsupported_ext.push_back("ARB_vertex_attrib_binding");
if (!GLAD_GL_ARB_vertex_type_10f_11f_11f_rev)
unsupported_ext.push_back("ARB_vertex_type_10f_11f_11f_rev");
+ if (!GLAD_GL_ARB_texture_mirror_clamp_to_edge)
+ unsupported_ext.push_back("ARB_texture_mirror_clamp_to_edge");
// Extensions required to support some texture formats.
if (!GLAD_GL_EXT_texture_compression_s3tc)