[−][src]Enum glium::texture::MipmapsOption
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]
fn clone(&self) -> MipmapsOption
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for MipmapsOption
[src]
impl Debug for MipmapsOption
[src]
impl Eq for MipmapsOption
[src]
impl From<CompressedMipmapsOption> for MipmapsOption
[src]
fn from(opt: CompressedMipmapsOption) -> MipmapsOption
[src]
impl PartialEq<MipmapsOption> for MipmapsOption
[src]
fn eq(&self, other: &MipmapsOption) -> bool
[src]
fn ne(&self, other: &MipmapsOption) -> bool
[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,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Content for T where
T: Copy,
[src]
T: Copy,
type Owned = T
A type that holds a sized version of the content.
fn read<F, E>(usize, F) -> Result<T, E> where
F: FnOnce(&mut T) -> Result<(), E>,
[src]
F: FnOnce(&mut T) -> Result<(), E>,
fn get_elements_size() -> usize
[src]
fn to_void_ptr(&Self) -> *const ()
[src]
fn ref_from_ptr(*mut (), usize) -> Option<*mut T>
[src]
fn is_size_suitable(usize) -> bool
[src]
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,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,