diff options
| author | 2021-04-26 18:14:10 +0200 | |
|---|---|---|
| committer | 2021-04-26 18:14:10 +0200 | |
| commit | 6a2084a204c87393cd30e3acae48c89c02dcb84d (patch) | |
| tree | cdfd25100f3619f87df6935feea56e96546fe4ec | |
| parent | Merge pull request #6198 from Kewlan/favorite-games (diff) | |
| download | yuzu-6a2084a204c87393cd30e3acae48c89c02dcb84d.tar.gz yuzu-6a2084a204c87393cd30e3acae48c89c02dcb84d.tar.xz yuzu-6a2084a204c87393cd30e3acae48c89c02dcb84d.zip | |
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); |