| 3304 | //! \brief Wrapper for clGetContextInfo(). |
| 3305 | template <typename T> |
| 3306 | cl_int getInfo(cl_context_info name, T* param) const |
| 3307 | { |
| 3308 | return detail::errHandler( |
| 3309 | detail::getInfo(&::clGetContextInfo, object_, name, param), |
| 3310 | __GET_CONTEXT_INFO_ERR); |
| 3311 | } |
| 3312 | |
| 3313 | //! \brief Wrapper for clGetContextInfo() that returns by value. |
| 3314 | template <cl_context_info name> typename |
nothing calls this directly
no test coverage detected