Enum vulkano::image::ImageDimensions [] [src]

pub enum ImageDimensions {
    Dim1d {
        width: u32,
        array_layers: u32,
    },
    Dim2d {
        width: u32,
        height: u32,
        array_layers: u32,
        cubemap_compatible: bool,
    },
    Dim3d {
        width: u32,
        height: u32,
        depth: u32,
    },
}

Variants

Fields of Dim1d

Fields of Dim2d

Fields of Dim3d

Methods

impl ImageDimensions
[src]

Trait Implementations

impl Copy for ImageDimensions
[src]

impl Clone for ImageDimensions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ImageDimensions
[src]

Formats the value using the given formatter.

impl PartialEq for ImageDimensions
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for ImageDimensions
[src]