summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorA-w-x <0_Awx_0@protonmail.com>2021-04-26 18:14:10 +0200
committerA-w-x <0_Awx_0@protonmail.com>2021-04-26 18:14:10 +0200
commit6a2084a204c87393cd30e3acae48c89c02dcb84d (patch)
treecdfd25100f3619f87df6935feea56e96546fe4ec
parentMerge pull request #6198 from Kewlan/favorite-games (diff)
downloadyuzu-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
-rw-r--r--src/video_core/renderer_opengl/gl_device.cpp2
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);