| 4711 | //! \brief Wrapper for clGetSamplerInfo(). |
| 4712 | template <typename T> |
| 4713 | cl_int getInfo(cl_sampler_info name, T* param) const |
| 4714 | { |
| 4715 | return detail::errHandler( |
| 4716 | detail::getInfo(&::clGetSamplerInfo, object_, name, param), |
| 4717 | __GET_SAMPLER_INFO_ERR); |
| 4718 | } |
| 4719 | |
| 4720 | //! \brief Wrapper for clGetSamplerInfo() that returns by value. |
| 4721 | template <cl_int name> typename |
nothing calls this directly
no test coverage detected