mirror of https://github.com/PCSX2/pcsx2.git
gsdx: disable some gl extensions when VMware driver is detected
It is likely the Mesa driver, code seems to have the same issue (separate shader)
This commit is contained in:
parent
35f26f00bc
commit
cebccea81c
|
@ -226,6 +226,8 @@ namespace GLLoader {
|
|||
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
|
||||
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;
|
||||
|
||||
GLuint dot = 0;
|
||||
while (s[dot] != '\0' && s[dot] != '.') dot++;
|
||||
|
|
Loading…
Reference in New Issue