Enum vulkano::image::MipmapsCount [] [src]

pub enum MipmapsCount {
    Log2,
    One,
    Specific(u32),
}

Specifies how many mipmaps must be allocated.

Note that at least one mipmap must be allocated, to store the main level of the image.

Variants

Allocates the number of mipmaps required to store all the mipmaps of the image where each mipmap is half the dimensions of the previous level. Guaranteed to be always supported.

Note that this is not necessarily the maximum number of mipmaps, as the Vulkan implementation may report that it supports a greater value.

Allocate one mipmap (ie. just the main level). Always supported.

Allocate the given number of mipmaps. May result in an error if the value is out of range of what the implementation supports.

Trait Implementations

impl Debug for MipmapsCount
[src]

[src]

Formats the value using the given formatter.

impl Copy for MipmapsCount
[src]

impl Clone for MipmapsCount
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl From<u32> for MipmapsCount
[src]

[src]

Performs the conversion.