[][src]Enum luminance::texture::MinFilter

pub enum MinFilter {
    Nearest,
    Linear,
    NearestMipmapNearest,
    NearestMipmapLinear,
    LinearMipmapNearest,
    LinearMipmapLinear,
}

Minification filter.

Variants

Nearest

Nearest interpolation.

Linear

Linear interpolation between surrounding pixels.

NearestMipmapNearest

This filter will select the nearest mipmap between two samples and will perform a nearest interpolation afterwards.

NearestMipmapLinear

This filter will select the nearest mipmap between two samples and will perform a linear interpolation afterwards.

LinearMipmapNearest

This filter will linearly interpolate between two mipmaps, which selected texels would have been interpolated with a nearest filter.

LinearMipmapLinear

This filter will linearly interpolate between two mipmaps, which selected texels would have been linarily interpolated as well.

Trait Implementations

impl Clone for MinFilter[src]

impl Copy for MinFilter[src]

impl Debug for MinFilter[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]