I'm writing code under WIN8(Metro style app), and having issues using OpenCL.
My project runs very well when I compile and run it as a WIN8 desktop app. But when I change it to Win store app(Metro style), then I can't use the OpenCL any more.
//get platform id
error = clGetPlatformIDs(1, &platformID, &numPlatforms);
if(error != CL_SUCCESS)
return;
clGetPlatformIDs returns error code -1001
.
Can't I use OpenCL in Metro style app? Someone please help me figure the issue out. I'm a WIN8 newbie