[][src]Enum glium::texture::MipmapsOption

pub enum MipmapsOption {
    NoMipmap,
    EmptyMipmaps,
    EmptyMipmapsMax(u32),
    AutoGeneratedMipmaps,
    AutoGeneratedMipmapsMax(u32),
}

Describes what to do about mipmaps during texture creation.

Variants

NoMipmap

No mipmap will be allocated or generated.

EmptyMipmaps

Allocates space for all the possible amount of mipmaps given the texture dimensions.

EmptyMipmapsMax(u32)

Allocates space for the specified amount of mipmaps (excluding the top level) but does not generate mipmaps.

AutoGeneratedMipmaps

Allocates and generates mipmaps for all the possible levels given the texture dimensions.

This does not mean that you will get mipmaps, instead it indicates that mipmaps are allowed to be generated if possible.

AutoGeneratedMipmapsMax(u32)

Allocates and generates mipmaps for the specified amount of mipmaps (excluding the top level) the possible levels given the texture dimensions.

This does not mean that you will get mipmaps, instead it indicates that mipmaps are allowed to be generated if possible.

Trait Implementations

impl Clone for MipmapsOption[src]

impl Copy for MipmapsOption[src]

impl Debug for MipmapsOption[src]

impl Eq for MipmapsOption[src]

impl From<CompressedMipmapsOption> for MipmapsOption[src]

impl PartialEq<MipmapsOption> for MipmapsOption[src]

impl StructuralEq for MipmapsOption[src]

impl StructuralPartialEq for MipmapsOption[src]

Auto Trait Implementations

impl RefUnwindSafe for MipmapsOption

impl Send for MipmapsOption

impl Sync for MipmapsOption

impl Unpin for MipmapsOption

impl UnwindSafe for MipmapsOption

Blanket Implementations

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

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

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

impl<T> Content for T where
    T: Copy
[src]

type Owned = T

A type that holds a sized version of the content.

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

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, 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.