Enqueues a command to unmap \p image from the host memory space. \see_opencl_ref{clEnqueueUnmapMemObject}
| 1176 | /// |
| 1177 | /// \see_opencl_ref{clEnqueueUnmapMemObject} |
| 1178 | event enqueue_unmap_image(const image_object &image, |
| 1179 | void *mapped_ptr, |
| 1180 | const wait_list &events = wait_list()) |
| 1181 | { |
| 1182 | BOOST_ASSERT(image.get_context() == this->get_context()); |
| 1183 | |
| 1184 | return enqueue_unmap_mem_object(image.get(), mapped_ptr, events); |
| 1185 | } |
| 1186 | |
| 1187 | /// Enqueues a command to copy data from \p src_image to \p dst_image. |
| 1188 | /// |