| 581 | } |
| 582 | |
| 583 | void Device::copy_memory_to_image(MemoryToImageCopyInfo const & info) |
| 584 | { |
| 585 | auto result = daxa_dvc_copy_memory_to_image(r_cast<daxa_Device>(this->object), r_cast<daxa_MemoryToImageCopyInfo const *>(&info)); |
| 586 | check_result(result, "failed copy memory to image"); |
| 587 | } |
| 588 | |
| 589 | void Device::copy_image_to_memory(ImageToMemoryCopyInfo const & info) |
| 590 | { |
nothing calls this directly
no test coverage detected