| 2082 | //! \brief Wrapper for clGetDeviceInfo(). |
| 2083 | template <typename T> |
| 2084 | cl_int getInfo(cl_device_info name, T* param) const |
| 2085 | { |
| 2086 | return detail::errHandler( |
| 2087 | detail::getInfo(&::clGetDeviceInfo, object_, name, param), |
| 2088 | __GET_DEVICE_INFO_ERR); |
| 2089 | } |
| 2090 | |
| 2091 | //! \brief Wrapper for clGetDeviceInfo() that returns by value. |
| 2092 | template <cl_int name> typename |
nothing calls this directly
no test coverage detected