[Bf-blender-cvs] [8c4d28cdb90] master: Fix T54400: Some GCN 1 cards available to select for use with Cycles

Mai Lavelle noreply at git.blender.org
Wed Apr 4 05:17:09 CEST 2018


Commit: 8c4d28cdb907d212a190147151f2e90459542813
Author: Mai Lavelle
Date:   Tue Apr 3 23:09:38 2018 -0400
Branches: master
https://developer.blender.org/rB8c4d28cdb907d212a190147151f2e90459542813

Fix T54400: Some GCN 1 cards available to select for use with Cycles

Hainan was missing from the list of GCN 1 cards.

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

M	intern/cycles/device/opencl/opencl_util.cpp

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

diff --git a/intern/cycles/device/opencl/opencl_util.cpp b/intern/cycles/device/opencl/opencl_util.cpp
index a776f48b5e9..78ed401bff5 100644
--- a/intern/cycles/device/opencl/opencl_util.cpp
+++ b/intern/cycles/device/opencl/opencl_util.cpp
@@ -633,7 +633,7 @@ bool OpenCLInfo::device_supported(const string& platform_name,
 		}
 		const char *blacklist[] = {
 			/* GCN 1 */
-			"Tahiti", "Pitcairn", "Capeverde", "Oland",
+			"Tahiti", "Pitcairn", "Capeverde", "Oland", "Hainan",
 			NULL
 		};
 		for(int i = 0; blacklist[i] != NULL; i++) {



More information about the Bf-blender-cvs mailing list