Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Foucault <foucault.clem@gmail.com>2018-12-17 10:56:38 +0300
committerClément Foucault <foucault.clem@gmail.com>2018-12-17 10:56:38 +0300
commit99457dd9819b6d2f63e84ba80280fe2819e8928d (patch)
tree7c52fb3d45afd2e146cd310507449b33732a0c79 /source/blender/gpu/intern
parent30a0f1a2bfe29a62b3cea70cead0200ad4e7234a (diff)
GPU: Add Intel HD Graphics 530 to the list of buggy intel gpus
Diffstat (limited to 'source/blender/gpu/intern')
-rw-r--r--source/blender/gpu/intern/gpu_extensions.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/gpu/intern/gpu_extensions.c b/source/blender/gpu/intern/gpu_extensions.c
index 8fcc69b31bc..6a65a922d89 100644
--- a/source/blender/gpu/intern/gpu_extensions.c
+++ b/source/blender/gpu/intern/gpu_extensions.c
@@ -307,6 +307,8 @@ void gpu_extensions_init(void)
GG.driver = GPU_DRIVER_OFFICIAL;
if (strstr(renderer, "UHD Graphics") ||
+ /* Not UHD but affected by the same bugs. */
+ strstr(renderer, "HD Graphics 530") ||
strstr(renderer, "Kaby Lake GT2"))
{
GG.device |= GPU_DEVICE_INTEL_UHD;