summaryrefslogtreecommitdiffstats
path: root/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-07-22 19:05:38 +0200
committerSubv <subv2112@gmail.com>2018-07-22 19:05:38 +0200
commitba2fb83d6001f2317e7e85e6ec6cd7202c1386a4 (patch)
treeab6abac6d305a1d86d8e1533cab16640882f208f /src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
parentMerge pull request #638 from MerryMage/mp (diff)
downloadyuzu-ba2fb83d6001f2317e7e85e6ec6cd7202c1386a4.tar
yuzu-ba2fb83d6001f2317e7e85e6ec6cd7202c1386a4.tar.gz
yuzu-ba2fb83d6001f2317e7e85e6ec6cd7202c1386a4.tar.bz2
yuzu-ba2fb83d6001f2317e7e85e6ec6cd7202c1386a4.tar.lz
yuzu-ba2fb83d6001f2317e7e85e6ec6cd7202c1386a4.tar.xz
yuzu-ba2fb83d6001f2317e7e85e6ec6cd7202c1386a4.tar.zst
yuzu-ba2fb83d6001f2317e7e85e6ec6cd7202c1386a4.zip
Diffstat (limited to '')
-rw-r--r--src/yuzu_cmd/emu_window/emu_window_sdl2.cpp14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
index ec73f08bd..72ba7d49c 100644
--- a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
+++ b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
@@ -85,10 +85,20 @@ bool EmuWindow_SDL2::SupportsRequiredGLExtensions() {
unsupported_ext.push_back("ARB_program_interface_query");
if (!GLAD_GL_ARB_separate_shader_objects)
unsupported_ext.push_back("ARB_separate_shader_objects");
- if (!GLAD_GL_ARB_shader_storage_buffer_object)
- unsupported_ext.push_back("ARB_shader_storage_buffer_object");
if (!GLAD_GL_ARB_vertex_attrib_binding)
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");
+
+ // Extensions required to support some texture formats.
+ if (!GLAD_GL_EXT_texture_compression_s3tc)
+ unsupported_ext.push_back("EXT_texture_compression_s3tc");
+ if (!GLAD_GL_ARB_texture_compression_rgtc)
+ unsupported_ext.push_back("ARB_texture_compression_rgtc");
+ if (!GLAD_GL_ARB_texture_compression_bptc)
+ unsupported_ext.push_back("ARB_texture_compression_bptc");
+ if (!GLAD_GL_ARB_depth_buffer_float)
+ unsupported_ext.push_back("ARB_depth_buffer_float");
for (const std::string& ext : unsupported_ext)
LOG_CRITICAL(Frontend, "Unsupported GL extension: {}", ext);