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;
  • width is the width of the extent.
  • height is the height of the extent.
  • depth is the depth of the extent.