diff options
author | A-w-x <0_Awx_0@protonmail.com> | 2021-04-26 18:14:10 +0200 |
---|---|---|
committer | A-w-x <0_Awx_0@protonmail.com> | 2021-04-26 18:14:10 +0200 |
commit | 6a2084a204c87393cd30e3acae48c89c02dcb84d (patch) | |
tree | cdfd25100f3619f87df6935feea56e96546fe4ec /src | |
parent | Merge pull request #6198 from Kewlan/favorite-games (diff) | |
download | yuzu-6a2084a204c87393cd30e3acae48c89c02dcb84d.tar yuzu-6a2084a204c87393cd30e3acae48c89c02dcb84d.tar.gz yuzu-6a2084a204c87393cd30e3acae48c89c02dcb84d.tar.bz2 yuzu-6a2084a204c87393cd30e3acae48c89c02dcb84d.tar.lz yuzu-6a2084a204c87393cd30e3acae48c89c02dcb84d.tar.xz yuzu-6a2084a204c87393cd30e3acae48c89c02dcb84d.tar.zst yuzu-6a2084a204c87393cd30e3acae48c89c02dcb84d.zip |
Diffstat (limited to 'src')
-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); |