OpenGL: Add Intel HD 405 to limited support.
This rare GPU has z-fighting issues in editor mode. Might be fixable by changing the bias, but would decrease precision on other platforms as well. Better to move this GPU to limited support. It is working, just has some drawing artifacts. See #128179 Pull Request: https://projects.blender.org/blender/blender/pulls/128351
This commit is contained in:
@@ -174,6 +174,10 @@ void GLBackend::platform_init()
|
||||
{
|
||||
support_level = GPU_SUPPORT_LEVEL_LIMITED;
|
||||
}
|
||||
/* A rare GPU that has z-fighting issues in edit mode. (see #128179) */
|
||||
if (strstr(renderer, "HD Graphics 405")) {
|
||||
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. */
|
||||
|
||||
Reference in New Issue
Block a user