diff options
| author | 2019-07-05 13:39:13 -0400 | |
|---|---|---|
| committer | 2019-07-05 13:39:13 -0400 | |
| commit | 772c86a260eb446b0fe4232b0a50666511bef25c (patch) | |
| tree | 013d92268c06454c93565c83eff2b79b56a00839 /src/yuzu_cmd | |
| parent | Merge pull request #2669 from FearlessTobi/move-cpujit-setting (diff) | |
| parent | texture_cache: Address Feedback (diff) | |
| download | yuzu-772c86a260eb446b0fe4232b0a50666511bef25c.tar.gz yuzu-772c86a260eb446b0fe4232b0a50666511bef25c.tar.xz yuzu-772c86a260eb446b0fe4232b0a50666511bef25c.zip | |
Merge pull request #2601 from FernandoS27/texture_cache
Implement a new Texture Cache
Diffstat (limited to 'src/yuzu_cmd')
| -rw-r--r-- | src/yuzu_cmd/emu_window/emu_window_sdl2_gl.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/yuzu_cmd/emu_window/emu_window_sdl2_gl.cpp b/src/yuzu_cmd/emu_window/emu_window_sdl2_gl.cpp index e2d3df180..f91b071bf 100644 --- a/src/yuzu_cmd/emu_window/emu_window_sdl2_gl.cpp +++ b/src/yuzu_cmd/emu_window/emu_window_sdl2_gl.cpp | |||
| @@ -52,6 +52,10 @@ private: | |||
| 52 | bool EmuWindow_SDL2_GL::SupportsRequiredGLExtensions() { | 52 | bool EmuWindow_SDL2_GL::SupportsRequiredGLExtensions() { |
| 53 | std::vector<std::string> unsupported_ext; | 53 | std::vector<std::string> unsupported_ext; |
| 54 | 54 | ||
| 55 | if (!GLAD_GL_ARB_buffer_storage) | ||
| 56 | unsupported_ext.push_back("ARB_buffer_storage"); | ||
| 57 | if (!GLAD_GL_ARB_direct_state_access) | ||
| 58 | unsupported_ext.push_back("ARB_direct_state_access"); | ||
| 55 | if (!GLAD_GL_ARB_vertex_type_10f_11f_11f_rev) | 59 | if (!GLAD_GL_ARB_vertex_type_10f_11f_11f_rev) |
| 56 | unsupported_ext.push_back("ARB_vertex_type_10f_11f_11f_rev"); | 60 | unsupported_ext.push_back("ARB_vertex_type_10f_11f_11f_rev"); |
| 57 | if (!GLAD_GL_ARB_texture_mirror_clamp_to_edge) | 61 | if (!GLAD_GL_ARB_texture_mirror_clamp_to_edge) |