| 2866 | //! \brief Wrapper for clGetEventInfo(). |
| 2867 | template <typename T> |
| 2868 | cl_int getInfo(cl_event_info name, T* param) const |
| 2869 | { |
| 2870 | return detail::errHandler( |
| 2871 | detail::getInfo(&::clGetEventInfo, object_, name, param), |
| 2872 | __GET_EVENT_INFO_ERR); |
| 2873 | } |
| 2874 | |
| 2875 | //! \brief Wrapper for clGetEventInfo() that returns by value. |
| 2876 | template <cl_int name> typename |
no test coverage detected