summaryrefslogtreecommitdiff
path: root/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2018-12-01 23:46:18 -0500
committerGravatar GitHub2018-12-01 23:46:18 -0500
commita6805e58ce4ace50a053b705df39d4eb26a76f84 (patch)
treedc4534238ea89732e57121372a41bf6a604a2ad2 /src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
parentMerge pull request #1823 from bunnei/fix-surface-copy (diff)
parentgl_rasterizer: Signal UNIMPLEMENTED when rt_separate_frag_data is not zero (diff)
downloadyuzu-a6805e58ce4ace50a053b705df39d4eb26a76f84.tar.gz
yuzu-a6805e58ce4ace50a053b705df39d4eb26a76f84.tar.xz
yuzu-a6805e58ce4ace50a053b705df39d4eb26a76f84.zip
Merge pull request #1795 from ReinUsesLisp/vc-cleanup
video_core: Minor style changes
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 2d6f8cced..a557f2884 100644
--- a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
+++ b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
@@ -111,6 +111,8 @@ void EmuWindow_SDL2::Fullscreen() {
111bool EmuWindow_SDL2::SupportsRequiredGLExtensions() { 111bool EmuWindow_SDL2::SupportsRequiredGLExtensions() {
112 std::vector<std::string> unsupported_ext; 112 std::vector<std::string> unsupported_ext;
113 113
114 if (!GLAD_GL_ARB_direct_state_access)
115 unsupported_ext.push_back("ARB_direct_state_access");
114 if (!GLAD_GL_ARB_vertex_type_10f_11f_11f_rev) 116 if (!GLAD_GL_ARB_vertex_type_10f_11f_11f_rev)
115 unsupported_ext.push_back("ARB_vertex_type_10f_11f_11f_rev"); 117 unsupported_ext.push_back("ARB_vertex_type_10f_11f_11f_rev");
116 if (!GLAD_GL_ARB_texture_mirror_clamp_to_edge) 118 if (!GLAD_GL_ARB_texture_mirror_clamp_to_edge)