Structures
VkExtent2D
Structure specifying a two-dimensional extent
A two-dimensional extent is defined by the structure:
typedef struct VkExtent2D {
uint32_t width;
uint32_t height;
} VkExtent2D;
widthis the width of the extent.heightis the height of the extent.