| 4926 | #if defined(CL_VERSION_1_2) |
| 4927 | template <typename T> |
| 4928 | cl_int getArgInfo(cl_uint argIndex, cl_kernel_arg_info name, T* param) const |
| 4929 | { |
| 4930 | return detail::errHandler( |
| 4931 | detail::getInfo(&::clGetKernelArgInfo, object_, argIndex, name, param), |
| 4932 | __GET_KERNEL_ARG_INFO_ERR); |
| 4933 | } |
| 4934 | |
| 4935 | template <cl_int name> typename |
| 4936 | detail::param_traits<detail::cl_kernel_arg_info, name>::param_type |
nothing calls this directly
no test coverage detected