Enqueues a command to copy a buffer object to an image object.
cl_int clEnqueueCopyBufferToImage(cl_command_queue command_queue,
cl_mem src_buffer,
cl_mem dst_image,
size_t src_offset,
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-
A valid host command-queue. The OpenCL context associated with
command_queue,src_buffer, anddst_imagemust be the same. src_buffer-
A valid buffer object.
dst_image-
A valid image object.
src_offset-
The offset where to begin copying data from
src_buffer. 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. Ifdst_imageis a 2D image object,region[2] must be 1. Ifdst_imageis a 1D image or 1D image buffer object,region[1] andregion[2] must be 1. Ifdst_imageis a 1D image array object,region[2] must be 1. The values inregioncannot be 0.The size in bytes of the region to be copied from
src_bufferreferred to assrc_cbis computed aswidth*height*depth*bytes/image_elementifdst_imageis a 3D image object, is computed aswidth*height*bytes/image_elementifdst_imageis a 2D image, is computed aswidth*height*arraysize*bytes/image_elementifdst_imageis a 2D image array object, is computed aswidth*bytes/image_elementifdst_imageis a 1D image or 1D image buffer object and is computed aswidth*arraysize*bytes/image_elementifdst_imageis a 1D image array object. 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 with event_wait_list can 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.
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.
clEnqueueCopyBufferToImage 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_bufferanddst_imageare not the same or if the context associated withcommand_queueand events inevent_wait_listare not the same. -
CL_INVALID_MEM_OBJECTifsrc_bufferis not a valid buffer object anddst_imageis not a valid image object or ifdst_imageis a 1D image buffer object created fromsrc_buffer. -
CL_INVALID_VALUEif the 1D, 2D, or 3D rectangular region specified bydst_originanddst_origin+regionrefers to a region outsidedst_origin, or if the region specified bysrc_offsetandsrc_offset+src_cbrefers to a region outsidesrc_buffer. -
CL_INVALID_VALUEif values indst_originandregiondo not follow rules described in the argument description fordst_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_MISALIGNED_SUB_BUFFER_OFFSETifsrc_bufferis a sub-buffer object andoffsetspecified when the sub-buffer object is created is not aligned toCL_DEVICE_MEM_BASE_ADDR_ALIGNvalue for device associated withqueue. -
CL_INVALID_IMAGE_SIZEif image dimensions (image width, height, specified or compute row and/or slice pitch) fordst_imageare not supported by device associated withqueue. -
CL_IMAGE_FORMAT_NOT_SUPPORTEDif image format (image channel order and data type) fordst_imageare not supported by device associated withqueue. -
CL_MEM_OBJECT_ALLOCATION_FAILUREif there is a failure to allocate memory for data store associated withsrc_bufferordst_image. -
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_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.