| 8635 | } |
| 8636 | |
| 8637 | void VmaBlockMetadata_Linear::GetAllocationInfo(VmaAllocHandle allocHandle, VmaVirtualAllocationInfo& outInfo) |
| 8638 | { |
| 8639 | outInfo.offset = (VkDeviceSize)allocHandle - 1; |
| 8640 | VmaSuballocation& suballoc = FindSuballocation(outInfo.offset); |
| 8641 | outInfo.size = suballoc.size; |
| 8642 | outInfo.pUserData = suballoc.userData; |
| 8643 | } |
| 8644 | |
| 8645 | void* VmaBlockMetadata_Linear::GetAllocationUserData(VmaAllocHandle allocHandle) const |
| 8646 | { |
no test coverage detected