aboutsummaryrefslogtreecommitdiff
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
parent7412f314e452c90783511102ab7d53d452bf74c2 (diff)
gl_device: Intel: Disable texture view formats workaround on mesa
-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 b113f54db1..3f4532ca72 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);