| 3470 | //! \brief Wrapper for clGetEventInfo(). |
| 3471 | template <typename T> |
| 3472 | cl_int getInfo(cl_event_info name, T* param) const |
| 3473 | { |
| 3474 | return detail::errHandler( |
| 3475 | detail::getInfo(&::clGetEventInfo, object_, name, param), |
| 3476 | __GET_EVENT_INFO_ERR); |
| 3477 | } |
| 3478 | |
| 3479 | //! \brief Wrapper for clGetEventInfo() that returns by value. |
| 3480 | template <cl_event_info name> typename |
nothing calls this directly
no test coverage detected