| 28 | VulkanMemoryManager::AllocationPtr m_allocation; |
| 29 | |
| 30 | VkDeviceMemory GetMemory() const |
| 31 | { |
| 32 | ASSERT(m_allocation != nullptr, ()); |
| 33 | ASSERT(m_allocation->m_memoryBlock != nullptr, ()); |
| 34 | return m_allocation->m_memoryBlock->m_memory; |
| 35 | } |
| 36 | |
| 37 | uint32_t GetAlignedOffset() const |
| 38 | { |
no test coverage detected