| 5435 | //! \brief Wrapper for clGetMemObjectInfo(). |
| 5436 | template <typename T> |
| 5437 | cl_int getInfo(cl_pipe_info name, T* param) const |
| 5438 | { |
| 5439 | return detail::errHandler( |
| 5440 | detail::getInfo(&::clGetPipeInfo, object_, name, param), |
| 5441 | __GET_PIPE_INFO_ERR); |
| 5442 | } |
| 5443 | |
| 5444 | //! \brief Wrapper for clGetMemObjectInfo() that returns by value. |
| 5445 | template <cl_pipe_info name> typename |
nothing calls this directly
no test coverage detected