| 593 | } |
| 594 | |
| 595 | void Device::image_layout_operation(HostImageLayoutOperationInfo const & info) |
| 596 | { |
| 597 | auto result = daxa_dvc_image_layout_operation(r_cast<daxa_Device>(this->object), r_cast<daxa_HostImageLayoutOperationInfo const *>(&info)); |
| 598 | check_result(result, "failed host image layout operation"); |
| 599 | } |
| 600 | |
| 601 | #define DAXA_DECL_DVC_CREATE_FN(Name, name) \ |
| 602 | auto Device::create_##name(Name##Info const & info)->Name \ |
nothing calls this directly
no test coverage detected