[−][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
No mipmap will be allocated or generated.
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.
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][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> Content for T where
T: Copy,
[src][+]
T: Copy,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,