Lines Matching refs:m_MemProps
6569 VkPhysicalDeviceMemoryProperties m_MemProps; member
6599 uint32_t GetMemoryHeapCount() const { return m_MemProps.memoryHeapCount; } in GetMemoryHeapCount()
6600 uint32_t GetMemoryTypeCount() const { return m_MemProps.memoryTypeCount; } in GetMemoryTypeCount()
6604 VMA_ASSERT(memTypeIndex < m_MemProps.memoryTypeCount); in MemoryTypeIndexToHeapIndex()
6605 return m_MemProps.memoryTypes[memTypeIndex].heapIndex; in MemoryTypeIndexToHeapIndex()
6610 …return (m_MemProps.memoryTypes[memTypeIndex].propertyFlags & (VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT … in IsMemoryTypeNonCoherent()
11339 …(m_hAllocator->m_MemProps.memoryTypes[m_MemoryTypeIndex].propertyFlags & requiredMemFlags) == requ… in IsCorruptionDetectionEnabled()
12281 m_hAllocator->m_MemProps.memoryTypes[m_MemoryTypeIndex].propertyFlags; in Defragment()
13237 for(size_t i = m_hAllocator->m_MemProps.memoryTypeCount; i--; ) in ~VmaDefragmentationContext_T()
14028 memset(&m_MemProps, 0, sizeof(m_MemProps)); in VmaAllocator_T()
14047 (*m_VulkanFunctions.vkGetPhysicalDeviceMemoryProperties)(m_PhysicalDevice, &m_MemProps); in VmaAllocator_T()
14065 if(limit < m_MemProps.memoryHeaps[heapIndex].size) in VmaAllocator_T()
14067 m_MemProps.memoryHeaps[heapIndex].size = limit; in VmaAllocator_T()
14111 m_MemProps, in Init()
14234 const VkDeviceSize heapSize = m_MemProps.memoryHeaps[heapIndex].size; in CalcPreferredBlockSize()
14258 … (m_MemProps.memoryTypes[memTypeIndex].propertyFlags & VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT) == 0) in AllocateMemoryOfType()
15392 …(m_MemProps.memoryTypes[hAllocation->GetMemoryTypeIndex()].propertyFlags & VK_MEMORY_PROPERTY_HOST… in FillAllocation()
15536 *ppPhysicalDeviceMemoryProperties = &allocator->m_MemProps; in vmaGetMemoryProperties()
15546 *pFlags = allocator->m_MemProps.memoryTypes[memoryTypeIndex].propertyFlags; in vmaGetMemoryTypeProperties()
15599 json.WriteNumber(allocator->m_MemProps.memoryHeaps[heapIndex].size); in vmaBuildStatsString()
15603 … if((allocator->m_MemProps.memoryHeaps[heapIndex].flags & VK_MEMORY_HEAP_DEVICE_LOCAL_BIT) != 0) in vmaBuildStatsString()
15627 … VkMemoryPropertyFlags flags = allocator->m_MemProps.memoryTypes[typeIndex].propertyFlags; in vmaBuildStatsString()
15760 allocator->m_MemProps.memoryTypes[memTypeIndex].propertyFlags; in vmaFindMemoryTypeIndex()