| 11074 | } |
| 11075 | |
| 11076 | VkDeviceMemory VmaAllocation_T::GetMemory() const |
| 11077 | { |
| 11078 | switch (m_Type) |
| 11079 | { |
| 11080 | case ALLOCATION_TYPE_BLOCK: |
| 11081 | return m_BlockAllocation.m_Block->GetDeviceMemory(); |
| 11082 | case ALLOCATION_TYPE_DEDICATED: |
| 11083 | return m_DedicatedAllocation.m_hMemory; |
| 11084 | default: |
| 11085 | VMA_ASSERT(0); |
| 11086 | return VK_NULL_HANDLE; |
| 11087 | } |
| 11088 | } |
| 11089 | |
| 11090 | void* VmaAllocation_T::GetMappedData() const |
| 11091 | { |
no test coverage detected