Fix T67009, T67013: crash with Intel HD Graphics and some older drivers

Add more versions to the workaround list.
This commit is contained in:
Brecht Van Lommel 2019-07-15 22:40:50 +02:00
parent f3899c13cd
commit af51988115
Notes: blender-bot 2023-02-14 01:47:09 +01:00
Referenced by issue #67009, Blender closes when i click rendered view for eevee and shading tab for both cycles and eevee
Referenced by issue #67013, crash system win 64x
1 changed files with 4 additions and 6 deletions

View File

@ -378,12 +378,10 @@ void gpu_extensions_init(void)
GG.dfdyfactors[1] = 1.0;
}
if (strstr(version, "Build 10.18.10.3574") ||
strstr(version, "Build 10.18.10.4252") ||
strstr(version, "Build 10.18.10.4358") ||
strstr(version, "Build 10.18.10.5069") ||
strstr(version, "Build 10.18.14.4264") ||
strstr(version, "Build 10.18.14.4432") ||
if (strstr(version, "Build 10.18.10.3379") || strstr(version, "Build 10.18.10.3574") ||
strstr(version, "Build 10.18.10.4252") || strstr(version, "Build 10.18.10.4358") ||
strstr(version, "Build 10.18.10.4653") || strstr(version, "Build 10.18.10.5069") ||
strstr(version, "Build 10.18.14.4264") || strstr(version, "Build 10.18.14.4432") ||
strstr(version, "Build 10.18.14.5067")) {
GG.context_local_shaders_workaround = true;
}