Enqueues a command to copy image objects.
cl_int clEnqueueCopyImage(cl_command_queue command_queue,
cl_mem src_image,
cl_mem dst_image,
const size_t *src_origin,
const size_t *dst_origin,
const size_t *region,
cl_uint num_events_in_wait_list,
const cl_event *event_wait_list,
cl_event *event)command_queue-
Refers to the host command-queue in which the copy command will be queued. The OpenCL context associated with
command_queue,src_imageanddst_imagemust be the same. src_image,dst_image,-
Can be 1D, 2D, 3D image or a 1D, 2D image array objects. It is possible to copy subregions between any combinations of source and destination types, provided that the dimensions of the subregions are the same e.g., one can copy a rectangular region from a 2D image to a slice of a 3D image.
src_origin-
Defines the (x, y, z) offset in pixels in the 1D, 2D or 3D image, the (x, y) offset and the image index in the 2D image array or the (x) offset and the image index in the 1D image array. If
imageis a 2D image object,src_origin[2] must be 0. Ifsrc_imageis a 1D image object,src_origin[1] andsrc_origin[2] must be 0. Ifsrc_imageis a 1D image array object,src_origin[2] must be 0. Ifsrc_imageis a 1D image array object,src_origin[1] describes the image index in the 1D image array. Ifsrc_imageis a 2D image array object,src_origin[2] describes the image index in the 2D image array. dst_origin-
Defines the (x, y, z) offset in pixels in the 1D, 2D or 3D image, the (x, y) offset and the image index in the 2D image array or the (x) offset and the image index in the 1D image array. If
dst_imageis a 2D image object,dst_origin[2] must be 0. Ifdst_imageis a 1D image or 1D image buffer object,dst_origin[1] anddst_origin[2] must be 0. Ifdst_imageis a 1D image array object,dst_origin[2] must be 0. Ifdst_imageis a 1D image array object,dst_origin[1] describes the image index in the 1D image array. Ifdst_imageis a 2D image array object,dst_origin[2] describes the image index in the 2D image array. region-
Defines the (width, height, depth) in pixels of the 1D, 2D or 3D rectangle, the (width, height) in pixels of the 2D rectangle and the number of images of a 2D image array or the (width) in pixels of the 1D rectangle and the number of images of a 1D image array. If
src_imageordst_imageis a 2D image object,region[2] must be 1. Ifsrc_imageordst_imageis a 1D image or 1D image buffer object,region[1] andregion[2] must be 1. Ifsrc_imageordst_imageis a 1D image array object,region[2] must be 1. The values inregioncannot be 0. event_wait_list ,num_events_in_wait_list-
Specify events that need to complete before this particular command can be executed. If
event_wait_listis NULL, then this particular command does not wait on any event to complete. Ifevent_wait_listis NULL,num_events_in_wait_listmust be 0. Ifevent_wait_listis not NULL, the list of events pointed to byevent_wait_listmust be valid andnum_events_in_wait_listmust be greater than 0. The events specified inevent_wait_listact as synchronization points. The context associated with events inevent_wait_listandcommand_queuemust be the same. The memory associated withevent_wait_listcan be reused or freed after the function returns. event-
Returns an event object that identifies this particular copy command and can be used to query or queue a wait for this particular command to complete.
eventcan be NULL in which case it will not be possible for the application to query the status of this command or queue a wait for this command to complete.clEnqueueBarrierWithWaitListcan be used instead. If theevent_wait_listand theeventarguments are not NULL, theeventargument should not refer to an element of theevent_wait_listarray.
It is currently a requirement that the src_image and dst_image image memory objects for clEnqueueCopyImage must have the exact same image format (i.e.
the cl_image_format descriptor specified when src_image and dst_image are created must match).
If the mipmap extensions are enabled with cl_khr_mipmap_image, calls to clEnqueueCopyImage, clEnqueueCopyImageToBuffer, and clEnqueueCopyBufferToImage can also be used to copy from and to a specific mip-level of a mip-mapped image.
If src_image argument is a 1D image, src_origin[1] specifies the mip-level to use.
If src_image argument is a 1D image array, src_origin[2] specifies the mip-level to use.
If src_image argument is a 2D image, src_origin[3] specifies the mip-level to use.
If src_image argument is a 2D image array or a 3D image, src_origin[3] specifies the mip-level to use.
If dst_image argument is a 1D image, dst_origin[1] specifies the mip-level to use.
If dst_image argument is a 1D image array, dst_origin[2] specifies the mip-level to use.
If dst_image argument is a 2D image, dst_origin[3] specifies the mip-level to use.
If dst_image argument is a 2D image array or a 3D image, dst_origin[3] specifies the mip-level to use.
If the mip level specified is not a valid value, these functions return the error CL_INVALID_MIP_LEVEL.
clEnqueueCopyImage returns CL_SUCCESS if the function is executed successfully.
Otherwise, it returns one of the following errors:
-
CL_INVALID_COMMAND_QUEUEifcommand_queueis not a valid host command-queue. -
CL_INVALID_CONTEXTif the context associated withcommand_queue,src_imageanddst_imageare not the same or if the context associated withcommand_queueand events inevent_wait_listare not the same. -
CL_INVALID_MEM_OBJECTifsrc_imageanddst_imageare not valid image objects. -
CL_IMAGE_FORMAT_MISMATCHifsrc_imageanddst_imagedo not use the same image format. -
CL_INVALID_VALUEif the 2D or 3D rectangular region specified bysrc_originandsrc_origin+regionrefers to a region outsidesrc_image, or if the 2D or 3D rectangular region specified bydst_originanddst_origin+regionrefers to a region outsidedst_image. -
CL_INVALID_VALUEif values insrc_origin,dst_originandregiondo not follow rules described in the argument description forsrc_origin,dst_originandregion. -
CL_INVALID_EVENT_WAIT_LISTifevent_wait_listis NULL andnum_events_in_wait_list> 0, orevent_wait_listis not NULL andnum_events_in_wait_listis 0, or if event objects inevent_wait_listare not valid events. -
CL_INVALID_IMAGE_SIZEif image dimensions (image width, height, specified or compute row and/or slice pitch) forsrc_imageordst_imageare not supported by device associated withqueue. -
CL_IMAGE_FORMAT_NOT_SUPPORTEDif image format (image channel order and data type) forsrc_imageordst_imageare not supported by device associated withqueue. -
CL_MEM_OBJECT_ALLOCATION_FAILUREif there is a failure to allocate memory for data store associated withsrc_imageordst_image. -
CL_OUT_OF_RESOURCESif there is a failure to allocate resources required by the OpenCL implementation on the device. -
CL_OUT_OF_HOST_MEMORYif there is a failure to allocate resources required by the OpenCL implementation on the host. -
CL_INVALID_OPERATIONif the device associated withcommand_queuedoes not support images (i.e.CL_DEVICE_IMAGE_SUPPORTspecified in the table of OpenCL Device Queries forclGetDeviceInfoisCL_FALSE). -
CL_MEM_COPY_OVERLAPifsrc_imageanddst_imageare the same image object and the source and destination regions overlap.