mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 11:19:59 +00:00
gl_device: Intel: Disable texture view formats workaround on mesa
This commit is contained in:
parent
7412f314e4
commit
6a2084a204
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue