Fix T69382: Crash - Regression - GPU Intel HD 4000

Workarounds were not being enabled for drivers like `10.18.10.5069`.
This commit is contained in:
2019-09-09 11:32:07 -03:00
parent 13206a6dc0
commit 2541d03917

View File

@@ -388,7 +388,8 @@ void gpu_extensions_init(void)
}
if (strstr(version, "Build 10.18.10.3") || strstr(version, "Build 10.18.10.4") ||
strstr(version, "Build 10.18.14.4") || strstr(version, "Build 10.18.14.5")) {
strstr(version, "Build 10.18.10.5") || strstr(version, "Build 10.18.14.4") ||
strstr(version, "Build 10.18.14.5")) {
/* Maybe not all of these drivers have problems with `GLEW_ARB_base_instance`.
* But it's hard to test each case. */
GG.glew_arb_base_instance_is_supported = false;