Beispiel #1
0
 internal static extern ErrorCode clSetEventCallback(cl_event _event, cl_int command_exec_callback_type, EventNotifyInternal pfn_notify, IntPtr user_data);
Beispiel #2
0
 /// <summary>
 /// OpenCL 1.1
 /// </summary>
 /// <param name="_event"></param>
 /// <param name="command_exec_callback_type"></param>
 /// <param name="pfn_notify"></param>
 /// <param name="user_data"></param>
 /// <returns></returns>
 public static ErrorCode SetEventCallback(cl_event _event, cl_int command_exec_callback_type, EventNotifyInternal pfn_notify, IntPtr user_data)
 {
     return(OpenCLAPI.clSetEventCallback(_event, command_exec_callback_type, pfn_notify, user_data));
 }