mirror of https://github.com/PCSX2/pcsx2.git
gsdx-ogl: disable SSO on nouveau
This commit is contained in:
parent
11708486d8
commit
99d7434671
|
@ -391,7 +391,7 @@ namespace GLLoader {
|
|||
nvidia_buggy_driver = true;
|
||||
if (strstr(vendor, "Intel"))
|
||||
intel_buggy_driver = true;
|
||||
if (strstr(vendor, "X.Org")) // Note: it might actually catch nouveau too, but bug are likely to be the same anyway
|
||||
if (strstr(vendor, "X.Org") || strstr(vendor, "nouveau")) // Note: it might actually catch nouveau too, but bug are likely to be the same anyway
|
||||
mesa_amd_buggy_driver = true;
|
||||
if (strstr(vendor, "VMware")) // Assume worst case because I don't know the real status
|
||||
mesa_amd_buggy_driver = intel_buggy_driver = true;
|
||||
|
|
Loading…
Reference in New Issue