| 364 | } |
| 365 | |
| 366 | auto Device::buffer_memory_requirements(BufferInfo const & info) const -> MemoryRequirements |
| 367 | { |
| 368 | return std::bit_cast<MemoryRequirements>( |
| 369 | daxa_dvc_buffer_memory_requirements( |
| 370 | rc_cast<daxa_Device>(this->object), |
| 371 | r_cast<daxa_BufferInfo const *>(&info))); |
| 372 | } |
| 373 | |
| 374 | auto Device::image_memory_requirements(ImageInfo const & info) const -> MemoryRequirements |
| 375 | { |
no test coverage detected