Beispiel #1
0
 public extern static ComputeErrorCode GetCommandQueueInfo(
     CLCommandQueueHandle command_queue,
     ComputeCommandQueueInfo param_name,
     IntPtr param_value_size,
     IntPtr param_value,
     out IntPtr param_value_size_ret);
Beispiel #2
0
 public static extern ComputeErrorCode GetCommandQueueInfo(
     CLCommandQueueHandle command_queue,
     ComputeCommandQueueInfo param_name,
     IntPtr param_value_size,
     IntPtr param_value,
     out IntPtr param_value_size_ret);
Beispiel #3
0
 public ComputeErrorCode GetCommandQueueInfo(CLCommandQueueHandle command_queue, ComputeCommandQueueInfo param_name, IntPtr param_value_size, IntPtr param_value, out IntPtr param_value_size_ret)
 {
     return StaticGetCommandQueueInfo(command_queue, param_name, param_value_size, param_value, out param_value_size_ret);
 }
Beispiel #4
0
 public static void GetCommandQueueInfoWrapper(CLCommandQueueHandle command_queue, ComputeCommandQueueInfo param_name, IntPtr param_value_size, IntPtr param_value, out IntPtr param_value_size_ret)
 {
     ComputeException.ThrowOnError(GetCommandQueueInfo(command_queue, param_name, param_value_size, param_value, out param_value_size_ret));
 }
Beispiel #5
0
 public static unsafe extern ComputeErrorCode GetCommandQueueInfo(
     IntPtr command_queue,
     ComputeCommandQueueInfo param_name,
     IntPtr param_value_size,
     /* void* */ IntPtr param_value,
     IntPtr* param_value_size_ret);
Beispiel #6
0
 ComputeErrorCode ICL10.GetCommandQueueInfo(CLCommandQueueHandle command_queue, ComputeCommandQueueInfo param_name,
                                            IntPtr param_value_size, IntPtr param_value, out IntPtr param_value_size_ret)
 {
     return(GetCommandQueueInfo(command_queue, param_name, param_value_size, param_value, out param_value_size_ret));
 }