From 8c4d28cdb907d212a190147151f2e90459542813 Mon Sep 17 00:00:00 2001 From: Mai Lavelle Date: Tue, 3 Apr 2018 23:09:38 -0400 Subject: [PATCH] Fix T54400: Some GCN 1 cards available to select for use with Cycles Hainan was missing from the list of GCN 1 cards. --- intern/cycles/device/opencl/opencl_util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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++) {