예제 #1
0
 public extern static ComputeErrorCode GetEventProfilingInfo(
     CLEventHandle @event,
     ComputeCommandProfilingInfo param_name,
     IntPtr param_value_size,
     IntPtr param_value,
     out IntPtr param_value_size_ret);
예제 #2
0
 public static extern ComputeErrorCode GetEventProfilingInfo(
     CLEventHandle @event,
     ComputeCommandProfilingInfo param_name,
     IntPtr param_value_size,
     IntPtr param_value,
     out IntPtr param_value_size_ret);
예제 #3
0
 public ComputeErrorCode GetEventProfilingInfo(CLEventHandle @event, ComputeCommandProfilingInfo param_name, IntPtr param_value_size, IntPtr param_value, out IntPtr param_value_size_ret)
 {
     return StaticGetEventProfilingInfo(@event, param_name, param_value_size, param_value, out param_value_size_ret);
 }
예제 #4
0
파일: CL10.cs 프로젝트: yeerkkiller1/Go-AI
 public static unsafe extern ComputeErrorCode GetEventProfilingInfo(
     IntPtr @event,
     ComputeCommandProfilingInfo param_name,
     IntPtr param_value_size,
     /* void* */ IntPtr param_value,
     IntPtr* param_value_size_ret);
예제 #5
0
 ComputeErrorCode ICL10.GetEventProfilingInfo(CLEventHandle @event, ComputeCommandProfilingInfo param_name,
                                              IntPtr param_value_size, IntPtr param_value, out IntPtr param_value_size_ret)
 {
     return(GetEventProfilingInfo(@event, param_name, param_value_size, param_value, out param_value_size_ret));
 }
예제 #6
0
 public static void GetEventProfilingInfoWrapper(CLEventHandle @event, ComputeCommandProfilingInfo param_name, IntPtr param_value_size, IntPtr param_value, out IntPtr param_value_size_ret)
 {
     ComputeException.ThrowOnError(GetEventProfilingInfo(@event, param_name, param_value_size, param_value, out param_value_size_ret));
 }