diff options
author | bunnei <bunneidev@gmail.com> | 2021-05-21 08:47:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-21 08:47:14 +0200 |
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 yuzu-5068279f23c1ae628f9298ab1a811435fd99c8cd.tar.gz yuzu-5068279f23c1ae628f9298ab1a811435fd99c8cd.tar.bz2 yuzu-5068279f23c1ae628f9298ab1a811435fd99c8cd.tar.lz yuzu-5068279f23c1ae628f9298ab1a811435fd99c8cd.tar.xz yuzu-5068279f23c1ae628f9298ab1a811435fd99c8cd.tar.zst yuzu-5068279f23c1ae628f9298ab1a811435fd99c8cd.zip |
-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() { has_variable_aoffi = TestVariableAoffi(); has_component_indexing_bug = is_amd; has_precise_bug = TestPreciseBug(); - has_broken_texture_view_formats = is_amd || is_intel; + has_broken_texture_view_formats = is_amd || (!is_linux && is_intel); has_nv_viewport_array2 = GLAD_GL_NV_viewport_array2; has_vertex_buffer_unified_memory = GLAD_GL_NV_vertex_buffer_unified_memory; has_debugging_tool_attached = IsDebugToolAttached(extensions); |