OpenGL: Mark Legacy Intel Drivers Unsupported
These drivers crash on startup caused by a driver bug. This include the latest drivers for legacy Intel CPUs with a HD 4000/HD 5000 series GPU. To be on the safe side all drivers with version 20.19.15.51* will be marked unsupported as we don't have the platforms to identify the precise driver versions that fail. See #113124 for more information. Pull Request: https://projects.blender.org/blender/blender/pulls/115228
This commit is contained in:
@@ -171,6 +171,12 @@ void GLBackend::platform_init()
|
||||
{
|
||||
support_level = GPU_SUPPORT_LEVEL_LIMITED;
|
||||
}
|
||||
/* Latest Intel driver have bugs that won't allow Blender to start.
|
||||
* Users must install different version of the driver.
|
||||
* See #113124 for more information. */
|
||||
if (strstr(version, "Build 20.19.15.51")) {
|
||||
support_level = GPU_SUPPORT_LEVEL_UNSUPPORTED;
|
||||
}
|
||||
}
|
||||
if ((device & GPU_DEVICE_ATI) && (os & GPU_OS_UNIX)) {
|
||||
/* Platform seems to work when SB backend is disabled. This can be done
|
||||
|
||||
Reference in New Issue
Block a user