Structures
VkMemoryType
Structure specifying memory type
The VkMemoryType structure is defined as:
typedef struct VkMemoryType {
VkMemoryPropertyFlags propertyFlags;
uint32_t heapIndex;
} VkMemoryType;
heapIndexdescribes which memory heap this memory type corresponds to, and must be less thanmemoryHeapCountfrom the VkPhysicalDeviceMemoryProperties structure.propertyFlagsis a bitmask of VkMemoryPropertyFlagBits of properties for this memory type.