diff options
author | David Marcec <dmarcecguzman@gmail.com> | 2018-08-19 04:00:33 +0200 |
---|---|---|
committer | David Marcec <dmarcecguzman@gmail.com> | 2018-08-19 04:00:33 +0200 |
commit | 706fc5d2d6d4beadfcdd3fedd64d451ef7595384 (patch) | |
tree | a18556b0543d4a39306d7b8307040ca79ad672ee /src/yuzu_cmd/emu_window | |
parent | Added WrapMode MirrorOnceClampToEdge (diff) | |
download | yuzu-706fc5d2d6d4beadfcdd3fedd64d451ef7595384.tar yuzu-706fc5d2d6d4beadfcdd3fedd64d451ef7595384.tar.gz yuzu-706fc5d2d6d4beadfcdd3fedd64d451ef7595384.tar.bz2 yuzu-706fc5d2d6d4beadfcdd3fedd64d451ef7595384.tar.lz yuzu-706fc5d2d6d4beadfcdd3fedd64d451ef7595384.tar.xz yuzu-706fc5d2d6d4beadfcdd3fedd64d451ef7595384.tar.zst yuzu-706fc5d2d6d4beadfcdd3fedd64d451ef7595384.zip |
Diffstat (limited to 'src/yuzu_cmd/emu_window')
-rw-r--r-- | src/yuzu_cmd/emu_window/emu_window_sdl2.cpp | 2 |
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) |