| 3607 | //! \brief Wrapper for clGetImageInfo(). |
| 3608 | template <typename T> |
| 3609 | cl_int getImageInfo(cl_image_info name, T* param) const |
| 3610 | { |
| 3611 | return detail::errHandler( |
| 3612 | detail::getInfo(&::clGetImageInfo, object_, name, param), |
| 3613 | __GET_IMAGE_INFO_ERR); |
| 3614 | } |
| 3615 | |
| 3616 | //! \brief Wrapper for clGetImageInfo() that returns by value. |
| 3617 | template <cl_int name> typename |
nothing calls this directly
no test coverage detected