| 6427 | VmaDeviceMemoryBlock* GetBlock() const { VMA_ASSERT(m_Type == ALLOCATION_TYPE_BLOCK); return m_BlockAllocation.m_Block; } |
| 6428 | uint32_t GetMemoryTypeIndex() const { return m_MemoryTypeIndex; } |
| 6429 | bool IsPersistentMap() const { return (m_Flags & FLAG_PERSISTENT_MAP) != 0; } |
| 6430 | bool IsMappingAllowed() const { return (m_Flags & FLAG_MAPPING_ALLOWED) != 0; } |
| 6431 | |
| 6432 | void SetUserData(VmaAllocator hAllocator, void* pUserData) { m_pUserData = pUserData; } |
no outgoing calls
no test coverage detected