| 587 | } |
| 588 | |
| 589 | void Device::copy_image_to_memory(ImageToMemoryCopyInfo const & info) |
| 590 | { |
| 591 | auto result = daxa_dvc_copy_image_to_memory(r_cast<daxa_Device>(this->object), r_cast<daxa_ImageToMemoryCopyInfo const *>(&info)); |
| 592 | check_result(result, "failed copy image to memory"); |
| 593 | } |
| 594 | |
| 595 | void Device::image_layout_operation(HostImageLayoutOperationInfo const & info) |
| 596 | { |
nothing calls this directly
no test coverage detected