diff options
| author | 2021-05-20 23:47:14 -0700 | |
|---|---|---|
| committer | 2021-05-20 23:47:14 -0700 | |
| commit | 5068279f23c1ae628f9298ab1a811435fd99c8cd (patch) | |
| tree | b3dd1afee8c0a0e77b1499429e3f1e8ff963f748 | |
| parent | Merge pull request #6333 from Morph1984/swkbd-confirm-text (diff) | |
| parent | gl_device: Intel: Disable texture view formats workaround on mesa (diff) | |
| download | yuzu-5068279f23c1ae628f9298ab1a811435fd99c8cd.tar.gz yuzu-5068279f23c1ae628f9298ab1a811435fd99c8cd.tar.xz yuzu-5068279f23c1ae628f9298ab1a811435fd99c8cd.zip | |
Merge pull request #6248 from A-w-x/intelmesa
gl_device: Intel: Disable texture view formats workaround on mesa
Diffstat (limited to '')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_device.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/gl_device.cpp b/src/video_core/renderer_opengl/gl_device.cpp index b113f54db..3f4532ca7 100644 --- a/src/video_core/renderer_opengl/gl_device.cpp +++ b/src/video_core/renderer_opengl/gl_device.cpp | |||
| @@ -241,7 +241,7 @@ Device::Device() { | |||
| 241 | has_variable_aoffi = TestVariableAoffi(); | 241 | has_variable_aoffi = TestVariableAoffi(); |
| 242 | has_component_indexing_bug = is_amd; | 242 | has_component_indexing_bug = is_amd; |
| 243 | has_precise_bug = TestPreciseBug(); | 243 | has_precise_bug = TestPreciseBug(); |
| 244 | has_broken_texture_view_formats = is_amd || is_intel; | 244 | has_broken_texture_view_formats = is_amd || (!is_linux && is_intel); |
| 245 | has_nv_viewport_array2 = GLAD_GL_NV_viewport_array2; | 245 | has_nv_viewport_array2 = GLAD_GL_NV_viewport_array2; |
| 246 | has_vertex_buffer_unified_memory = GLAD_GL_NV_vertex_buffer_unified_memory; | 246 | has_vertex_buffer_unified_memory = GLAD_GL_NV_vertex_buffer_unified_memory; |
| 247 | has_debugging_tool_attached = IsDebugToolAttached(extensions); | 247 | has_debugging_tool_attached = IsDebugToolAttached(extensions); |