| 392 | |
| 393 | template <vkb::BindingType bindingType, typename HandleType> |
| 394 | inline Allocated<bindingType, HandleType>::Allocated(Allocated &&other) noexcept : |
| 395 | ParentType{static_cast<ParentType &&>(other)}, |
| 396 | allocation_create_info(std::exchange(other.allocation_create_info, {})), |
| 397 | allocation(std::exchange(other.allocation, {})), |
| 398 | mapped_data(std::exchange(other.mapped_data, {})), |
| 399 | coherent(std::exchange(other.coherent, {})), |
| 400 | persistent(std::exchange(other.persistent, {})) |
| 401 | { |
| 402 | } |
| 403 | |
| 404 | template <vkb::BindingType bindingType, typename HandleType> |
| 405 | template <typename... Args> |
nothing calls this directly
no outgoing calls
no test coverage detected