| 11003 | } |
| 11004 | |
| 11005 | void VmaAllocation_T::SetName(VmaAllocator hAllocator, const char* pName) |
| 11006 | { |
| 11007 | VMA_ASSERT(pName == VMA_NULL || pName != m_pName); |
| 11008 | |
| 11009 | FreeName(hAllocator); |
| 11010 | |
| 11011 | if (pName != VMA_NULL) |
| 11012 | m_pName = VmaCreateStringCopy(hAllocator->GetAllocationCallbacks(), pName); |
| 11013 | } |
| 11014 | |
| 11015 | uint8_t VmaAllocation_T::SwapBlockAllocation(VmaAllocator hAllocator, VmaAllocation allocation) |
| 11016 | { |
no test coverage detected