Exemplo n.º 1
0
 public static ErrorCode EnqueueCopyImageToBuffer(IntPtr command_queue, IntPtr src_image, IntPtr dst_buffer, IntPtr *src_origin, IntPtr *region, long dst_offset, int num_events_in_wait_list, IntPtr *event_wait_list, IntPtr *_event)
 {
     return(OpenCLAPI.clEnqueueCopyImageToBuffer(command_queue, src_image, dst_buffer, src_origin, region, (IntPtr)dst_offset, (uint)num_events_in_wait_list, event_wait_list, _event));
 }
Exemplo n.º 2
0
		public static ErrorCode EnqueueCopyImageToBuffer(IntPtr command_queue, IntPtr src_image, IntPtr dst_buffer, IntPtr[] src_origin, IntPtr[] region, IntPtr dst_offset, UInt32 num_events_in_wait_list, IntPtr[] event_wait_list, IntPtr* _event) {
			return OpenCLAPI.clEnqueueCopyImageToBuffer(command_queue, src_image, dst_buffer, src_origin, region, dst_offset, num_events_in_wait_list, event_wait_list, _event);
		}