Enqueues a command to unmap \p image from the host memory space. \see_opencl_ref{clEnqueueUnmapMemObject}
| 1131 | /// |
| 1132 | /// \see_opencl_ref{clEnqueueUnmapMemObject} |
| 1133 | event enqueue_unmap_image(const image_object &image, |
| 1134 | void *mapped_ptr, |
| 1135 | const wait_list &events = wait_list()) |
| 1136 | { |
| 1137 | BOOST_ASSERT(image.get_context() == this->get_context()); |
| 1138 | |
| 1139 | return enqueue_unmap_mem_object(image.get(), mapped_ptr, events); |
| 1140 | } |
| 1141 | |
| 1142 | /// Enqueues a command to copy data from \p src_image to \p dst_image. |
| 1143 | /// |