| 1762 | } |
| 1763 | |
| 1764 | static cl_uint getDevicePlatformVersion(cl_device_id device) |
| 1765 | { |
| 1766 | cl_platform_id platform; |
| 1767 | clGetDeviceInfo(device, CL_DEVICE_PLATFORM, sizeof(platform), &platform, NULL); |
| 1768 | return getPlatformVersion(platform); |
| 1769 | } |
| 1770 | |
| 1771 | #if defined(CL_VERSION_1_2) && defined(CL_USE_DEPRECATED_OPENCL_1_1_APIS) |
| 1772 | static cl_uint getContextPlatformVersion(cl_context context) |
no test coverage detected