| 2889 | //! \brief Wrapper for clGetEventProfilingInfo(). |
| 2890 | template <typename T> |
| 2891 | cl_int getProfilingInfo(cl_profiling_info name, T* param) const |
| 2892 | { |
| 2893 | return detail::errHandler(detail::getInfo( |
| 2894 | &::clGetEventProfilingInfo, object_, name, param), |
| 2895 | __GET_EVENT_PROFILE_INFO_ERR); |
| 2896 | } |
| 2897 | |
| 2898 | //! \brief Wrapper for clGetEventProfilingInfo() that returns by value. |
| 2899 | template <cl_int name> typename |
nothing calls this directly
no test coverage detected