| 3075 | //! \brief Wrapper for clGetMemObjectInfo(). |
| 3076 | template <typename T> |
| 3077 | cl_int getInfo(cl_mem_info name, T* param) const |
| 3078 | { |
| 3079 | return detail::errHandler( |
| 3080 | detail::getInfo(&::clGetMemObjectInfo, object_, name, param), |
| 3081 | __GET_MEM_OBJECT_INFO_ERR); |
| 3082 | } |
| 3083 | |
| 3084 | //! \brief Wrapper for clGetMemObjectInfo() that returns by value. |
| 3085 | template <cl_int name> typename |
nothing calls this directly
no test coverage detected