gsdx-ogl: disable SSO on nouveau

This commit is contained in:
Gregory Hainaut 2015-05-24 19:24:10 +02:00
parent 11708486d8
commit 99d7434671
1 changed files with 1 additions and 1 deletions

View File

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