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