Structures
VkExtent3D
Structure specifying a three-dimensional extent
A three-dimensional extent is defined by the structure:
typedef struct VkExtent3D {
uint32_t width;
uint32_t height;
uint32_t depth;
} VkExtent3D;
pub struct Extent3D {
width: u32,
height: u32,
depth: u32,
}
widthis the width of the extent.heightis the height of the extent.depthis the depth of the extent.
Parent
VK_VERSION_1_0Type
Structures