Structures
VkMemoryRequirements
Structure specifying memory requirements
The VkMemoryRequirements structure is defined as:
typedef struct VkMemoryRequirements {
VkDeviceSize size;
VkDeviceSize alignment;
uint32_t memoryTypeBits;
} VkMemoryRequirements;
sizeis the size, in bytes, of the memory allocation required for the resource.alignmentis the alignment, in bytes, of the offset within the allocation required for the resource.memoryTypeBitsis a bitmask and contains one bit set for every supported memory type for the resource. Bitiis set if and only if the memory typeiin theVkPhysicalDeviceMemoryPropertiesstructure for the physical device is supported for the resource.