Compare commits

...

2 Commits

Author SHA1 Message Date
A-w-x
9217e9a34c Merge branch 'master' of https://github.com/yuzu-emu/yuzu 2021-04-26 17:58:36 +02:00
A-w-x
100576e94b gl_device: Intel: do not apply Windows fixes in Linux 2021-03-11 13:05:04 +01:00

View File

@@ -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);