| 5772 | #if CL_HPP_TARGET_OPENCL_VERSION >= 120 |
| 5773 | template <typename T> |
| 5774 | cl_int getArgInfo(cl_uint argIndex, cl_kernel_arg_info name, T* param) const |
| 5775 | { |
| 5776 | return detail::errHandler( |
| 5777 | detail::getInfo(&::clGetKernelArgInfo, object_, argIndex, name, param), |
| 5778 | __GET_KERNEL_ARG_INFO_ERR); |
| 5779 | } |
| 5780 | |
| 5781 | template <cl_kernel_arg_info name> typename |
| 5782 | detail::param_traits<detail::cl_kernel_arg_info, name>::param_type |
nothing calls this directly
no test coverage detected