diff options
| author | 2018-06-26 14:28:56 -0400 | |
|---|---|---|
| committer | 2018-06-26 14:28:56 -0400 | |
| commit | 29814087220e42594ca6a37cde97ca6ec85de2bc (patch) | |
| tree | 11910dc6bbd245acb5370cbc58cdebd926096d80 /src | |
| parent | Merge pull request #554 from Subv/constbuffer_ubo (diff) | |
| parent | yuzu: Remove SSBOs check from Qt frontend. (diff) | |
| download | yuzu-29814087220e42594ca6a37cde97ca6ec85de2bc.tar.gz yuzu-29814087220e42594ca6a37cde97ca6ec85de2bc.tar.xz yuzu-29814087220e42594ca6a37cde97ca6ec85de2bc.zip | |
Merge pull request #590 from bunnei/rm-ssbo-check
yuzu: Remove SSBOs check from Qt frontend.
Diffstat (limited to '')
| -rw-r--r-- | src/yuzu/main.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 97be548d7..00a3e9632 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -334,8 +334,6 @@ bool GMainWindow::SupportsRequiredGLExtensions() { | |||
| 334 | unsupported_ext.append("ARB_program_interface_query"); | 334 | unsupported_ext.append("ARB_program_interface_query"); |
| 335 | if (!GLAD_GL_ARB_separate_shader_objects) | 335 | if (!GLAD_GL_ARB_separate_shader_objects) |
| 336 | unsupported_ext.append("ARB_separate_shader_objects"); | 336 | unsupported_ext.append("ARB_separate_shader_objects"); |
| 337 | if (!GLAD_GL_ARB_shader_storage_buffer_object) | ||
| 338 | unsupported_ext.append("ARB_shader_storage_buffer_object"); | ||
| 339 | if (!GLAD_GL_ARB_vertex_attrib_binding) | 337 | if (!GLAD_GL_ARB_vertex_attrib_binding) |
| 340 | unsupported_ext.append("ARB_vertex_attrib_binding"); | 338 | unsupported_ext.append("ARB_vertex_attrib_binding"); |
| 341 | 339 | ||