Enum vulkano::sampler::MipmapMode[][src]

#[repr(u32)]
pub enum MipmapMode { Nearest, Linear, }

Describes which mipmap from the source to use.

Variants

Use the mipmap whose dimensions are the nearest to the dimensions of the destination.

Take the mipmap whose dimensions are no greater than that of the destination together with the next higher level mipmap, calculate the value for both, and interpolate them.

Trait Implementations

impl Debug for MipmapMode
[src]

Formats the value using the given formatter. Read more

impl Copy for MipmapMode
[src]

impl Clone for MipmapMode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for MipmapMode
[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 MipmapMode
[src]

impl Hash for MipmapMode
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for MipmapMode

impl Sync for MipmapMode