VkMemoryType(3)
C Specification
TheVkMemoryType structure is defined as:
// Provided by VK_VERSION_1_0typedef struct VkMemoryType { VkMemoryPropertyFlags propertyFlags; uint32_t heapIndex;} VkMemoryType;Members
heapIndexdescribes which memory heap this memory type correspondsto, andmust be less thanmemoryHeapCountfrom theVkPhysicalDeviceMemoryProperties structure.propertyFlagsis a bitmask ofVkMemoryPropertyFlagBits ofproperties for this memory type.
Document Notes
For more information, see theVulkan Specification.
This page is extracted from the Vulkan Specification.Fixes and changes should be made to the Specification, not directly.