| 330 | } |
| 331 | |
| 332 | void Device::device_memory_report(DeviceMemoryReport & out_report) const |
| 333 | { |
| 334 | daxa_Result result = daxa_dvc_device_memory_report(r_cast<daxa_Device>(this->object), r_cast<daxa_DeviceMemoryReport *>(&out_report)); |
| 335 | check_result(result, "failed to create device memory report"); |
| 336 | } |
| 337 | |
| 338 | auto Device::device_memory_report_convenient() const -> DeviceMemoryReportConvenient |
| 339 | { |
nothing calls this directly
no test coverage detected