Change the argument type to cl_platform_info.
authorFangjun KUANG <csukuangfj@gmail.com>
Wed, 15 Feb 2017 15:44:40 +0000 (16:44 +0100)
committerGitHub <noreply@github.com>
Wed, 15 Feb 2017 15:44:40 +0000 (16:44 +0100)
Although both `cl_platform_info` and `cl_device_info` are defined as macro `cl_uint`, it needs to use `cl_platform_info` to get
the platform information.

modules/core/src/ocl.cpp

index 60ecc69..dfa1adb 100644 (file)
@@ -5528,7 +5528,7 @@ struct PlatformInfo::Impl
         getDevices(devices, handle);
     }
 
-    String getStrProp(cl_device_info prop) const
+    String getStrProp(cl_platform_info prop) const
     {
         char buf[1024];
         size_t sz=0;