diff options
| author | 2018-05-30 17:35:57 -0500 | |
|---|---|---|
| committer | 2018-06-04 12:26:41 -0500 | |
| commit | fbef849c04771fa2f35c11706ed15a410da519d6 (patch) | |
| tree | 167072f44b5a1422cea4c77ea08b3937614506c4 | |
| parent | qt: add check for GL extension support (diff) | |
| download | yuzu-fbef849c04771fa2f35c11706ed15a410da519d6.tar.gz yuzu-fbef849c04771fa2f35c11706ed15a410da519d6.tar.xz yuzu-fbef849c04771fa2f35c11706ed15a410da519d6.zip | |
sdl: add check for GL extension support
| -rw-r--r-- | src/yuzu_cmd/emu_window/emu_window_sdl2.cpp | 23 | ||||
| -rw-r--r-- | src/yuzu_cmd/emu_window/emu_window_sdl2.h | 3 |
2 files changed, 26 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 e21de6f21..cfd8eb7e6 100644 --- a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp +++ b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp | |||
| @@ -78,6 +78,24 @@ void EmuWindow_SDL2::Fullscreen() { | |||
| 78 | SDL_MaximizeWindow(render_window); | 78 | SDL_MaximizeWindow(render_window); |
| 79 | } | 79 | } |
| 80 | 80 | ||
| 81 | bool EmuWindow_SDL2::SupportsRequiredGLExtensions() { | ||
| 82 | std::vector<std::string> unsupported_ext; | ||
| 83 | |||
| 84 | if (!GLAD_GL_ARB_program_interface_query) | ||
| 85 | unsupported_ext.push_back("ARB_program_interface_query"); | ||
| 86 | if (!GLAD_GL_ARB_separate_shader_objects) | ||
| 87 | unsupported_ext.push_back("ARB_separate_shader_objects"); | ||
| 88 | if (!GLAD_GL_ARB_shader_storage_buffer_object) | ||
| 89 | unsupported_ext.push_back("ARB_shader_storage_buffer_object"); | ||
| 90 | if (!GLAD_GL_ARB_vertex_attrib_binding) | ||
| 91 | unsupported_ext.push_back("ARB_vertex_attrib_binding"); | ||
| 92 | |||
| 93 | for (const std::string& ext : unsupported_ext) | ||
| 94 | NGLOG_CRITICAL(Frontend, "Unsupported GL extension: {}", ext); | ||
| 95 | |||
| 96 | return unsupported_ext.empty(); | ||
| 97 | } | ||
| 98 | |||
| 81 | EmuWindow_SDL2::EmuWindow_SDL2(bool fullscreen) { | 99 | EmuWindow_SDL2::EmuWindow_SDL2(bool fullscreen) { |
| 82 | InputCommon::Init(); | 100 | InputCommon::Init(); |
| 83 | 101 | ||
| @@ -128,6 +146,11 @@ EmuWindow_SDL2::EmuWindow_SDL2(bool fullscreen) { | |||
| 128 | exit(1); | 146 | exit(1); |
| 129 | } | 147 | } |
| 130 | 148 | ||
| 149 | if (!SupportsRequiredGLExtensions()) { | ||
| 150 | NGLOG_CRITICAL(Frontend, "GPU does not support all required OpenGL extensions! Exiting..."); | ||
| 151 | exit(1); | ||
| 152 | } | ||
| 153 | |||
| 131 | OnResize(); | 154 | OnResize(); |
| 132 | OnMinimalClientAreaChangeRequest(GetActiveConfig().min_client_area_size); | 155 | OnMinimalClientAreaChangeRequest(GetActiveConfig().min_client_area_size); |
| 133 | SDL_PumpEvents(); | 156 | SDL_PumpEvents(); |
diff --git a/src/yuzu_cmd/emu_window/emu_window_sdl2.h b/src/yuzu_cmd/emu_window/emu_window_sdl2.h index 7d5cfffb6..1d835c3c6 100644 --- a/src/yuzu_cmd/emu_window/emu_window_sdl2.h +++ b/src/yuzu_cmd/emu_window/emu_window_sdl2.h | |||
| @@ -46,6 +46,9 @@ private: | |||
| 46 | /// Called when user passes the fullscreen parameter flag | 46 | /// Called when user passes the fullscreen parameter flag |
| 47 | void Fullscreen(); | 47 | void Fullscreen(); |
| 48 | 48 | ||
| 49 | /// Whether the GPU and driver supports the OpenGL extension required | ||
| 50 | bool SupportsRequiredGLExtensions(); | ||
| 51 | |||
| 49 | /// Called when a configuration change affects the minimal size of the window | 52 | /// Called when a configuration change affects the minimal size of the window |
| 50 | void OnMinimalClientAreaChangeRequest( | 53 | void OnMinimalClientAreaChangeRequest( |
| 51 | const std::pair<unsigned, unsigned>& minimal_size) override; | 54 | const std::pair<unsigned, unsigned>& minimal_size) override; |