Skip to content
Snippets Groups Projects
Unverified Commit f98eb563 authored by psychocrypt's avatar psychocrypt Committed by GitHub
Browse files

Merge pull request #1026 from ryanhattam/patch-1

Fix Disabling AMD GPUs
parents a8e83eec 064804bd
No related branches found
No related tags found
No related merge requests found
......@@ -56,9 +56,10 @@ struct configVal {
Type iType;
};
//Same order as in configEnum, as per comment above
// Same order as in configEnum, as per comment above
// kNullType means any type
configVal oConfigValues[] = {
{ aGpuThreadsConf, "gpu_threads_conf", kArrayType },
{ aGpuThreadsConf, "gpu_threads_conf", kNullType },
{ iPlatformIdx, "platform_index", kNumberType }
};
......@@ -68,6 +69,8 @@ inline bool checkType(Type have, Type want)
{
if(want == have)
return true;
else if(want == kNullType)
return true;
else if(want == kTrueType && have == kFalseType)
return true;
else if(want == kFalseType && have == kTrueType)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment