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