| 7294 | } |
| 7295 | |
| 7296 | void VmaBlockBufferImageGranularity::Destroy(const VkAllocationCallbacks* pAllocationCallbacks) |
| 7297 | { |
| 7298 | if (m_RegionInfo) |
| 7299 | { |
| 7300 | vma_delete_array(pAllocationCallbacks, m_RegionInfo, m_RegionCount); |
| 7301 | m_RegionInfo = VMA_NULL; |
| 7302 | } |
| 7303 | } |
| 7304 | |
| 7305 | void VmaBlockBufferImageGranularity::RoundupAllocRequest(VmaSuballocationType allocType, |
| 7306 | VkDeviceSize& inOutAllocSize, |
no test coverage detected