Helo, for a given resource (VkBuffer or VkImage)
VkMemoryRequirements is given
My question is
Is the size a multiple of the alignment in this struct ?
typedef struct VkMemoryRequirements {
VkDeviceSize size;
VkDeviceSize alignment;
uint32_t memoryTypeBits;
} VkMemoryRequirements;
I guess it is yes
but I cannot find a reference saying that the size should be a multiple of alignment
Thank you