diff options
author | Markus Wick <markus@selfnet.de> | 2018-09-11 21:59:40 +0200 |
---|---|---|
committer | Markus Wick <markus@selfnet.de> | 2018-09-11 22:18:46 +0200 |
commit | 3e973bc4c6c04c61df69518ef428c7cf0d18493d (patch) | |
tree | 8b4bbb8b3f9b9d5b00d4eddbfe1aed64652e2e5f /src/yuzu_cmd/emu_window/emu_window_sdl2.cpp | |
parent | Merge pull request #1291 from lioncash/default (diff) | |
download | yuzu-3e973bc4c6c04c61df69518ef428c7cf0d18493d.tar yuzu-3e973bc4c6c04c61df69518ef428c7cf0d18493d.tar.gz yuzu-3e973bc4c6c04c61df69518ef428c7cf0d18493d.tar.bz2 yuzu-3e973bc4c6c04c61df69518ef428c7cf0d18493d.tar.lz yuzu-3e973bc4c6c04c61df69518ef428c7cf0d18493d.tar.xz yuzu-3e973bc4c6c04c61df69518ef428c7cf0d18493d.tar.zst yuzu-3e973bc4c6c04c61df69518ef428c7cf0d18493d.zip |
Diffstat (limited to 'src/yuzu_cmd/emu_window/emu_window_sdl2.cpp')
-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 1c4717123..d213929bd 100644 --- a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp +++ b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp @@ -94,6 +94,8 @@ bool EmuWindow_SDL2::SupportsRequiredGLExtensions() { unsupported_ext.push_back("ARB_texture_mirror_clamp_to_edge"); if (!GLAD_GL_ARB_base_instance) unsupported_ext.push_back("ARB_base_instance"); + if (!GLAD_GL_ARB_texture_storage) + unsupported_ext.push_back("ARB_texture_storage"); // Extensions required to support some texture formats. if (!GLAD_GL_EXT_texture_compression_s3tc) |