[Bf-blender-cvs] [99457dd9819] blender2.8: GPU: Add Intel HD Graphics 530 to the list of buggy intel gpus

Clément Foucault noreply at git.blender.org
Mon Dec 17 08:46:08 CET 2018


Commit: 99457dd9819b6d2f63e84ba80280fe2819e8928d
Author: Clément Foucault
Date:   Mon Dec 17 08:56:38 2018 +0100
Branches: blender2.8
https://developer.blender.org/rB99457dd9819b6d2f63e84ba80280fe2819e8928d

GPU: Add Intel HD Graphics 530 to the list of buggy intel gpus

===================================================================

M	source/blender/gpu/intern/gpu_extensions.c

===================================================================

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;



More information about the Bf-blender-cvs mailing list