| 4567 | //! \brief Wrapper for clGetImageInfo(). |
| 4568 | template <typename T> |
| 4569 | cl_int getImageInfo(cl_image_info name, T* param) const |
| 4570 | { |
| 4571 | return detail::errHandler( |
| 4572 | detail::getInfo(&::clGetImageInfo, object_, name, param), |
| 4573 | __GET_IMAGE_INFO_ERR); |
| 4574 | } |
| 4575 | |
| 4576 | //! \brief Wrapper for clGetImageInfo() that returns by value. |
| 4577 | template <cl_image_info name> typename |
nothing calls this directly
no test coverage detected