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;
pub struct Extent2D {
width: u32,
height: u32,
}
widthis the width of the extent.heightis the height of the extent.
Parent
VK_VERSION_1_0Type
Structures