Enum
VkImageType
Specifies the type of an image object
Possible values of VkImageCreateInfo::imageType, specifying the
basic dimensionality of an image, are:
typedef enum VkImageType {
VK_IMAGE_TYPE_1D = 0,
VK_IMAGE_TYPE_2D = 1,
VK_IMAGE_TYPE_3D = 2,
} VkImageType;
pub struct ImageType(u32);
impl ImageType {
pub const TYPE_1D: Self = 0;
pub const TYPE_2D: Self = 1;
pub const TYPE_3D: Self = 2;
}
VK_IMAGE_TYPE_1Dspecifies a one-dimensional image.VK_IMAGE_TYPE_2Dspecifies a two-dimensional image.VK_IMAGE_TYPE_3Dspecifies a three-dimensional image.
Parent
VK_VERSION_1_0Type
Enum