| 5542 | //! \brief Wrapper for clGetSamplerInfo(). |
| 5543 | template <typename T> |
| 5544 | cl_int getInfo(cl_sampler_info name, T* param) const |
| 5545 | { |
| 5546 | return detail::errHandler( |
| 5547 | detail::getInfo(&::clGetSamplerInfo, object_, name, param), |
| 5548 | __GET_SAMPLER_INFO_ERR); |
| 5549 | } |
| 5550 | |
| 5551 | //! \brief Wrapper for clGetSamplerInfo() that returns by value. |
| 5552 | template <cl_sampler_info name> typename |
nothing calls this directly
no test coverage detected