Enum glium::texture::CompressedMipmapsOption
[−]
[src]
pub enum CompressedMipmapsOption { NoMipmap, EmptyMipmaps, EmptyMipmapsMax(u32), }
Describes what to do about mipmaps during compressed texture creation.
Variants
NoMipmap | No mipmaps will be allocated or generated. |
EmptyMipmaps | Allocates space for all the possible amount of mipmaps given the texture dimensions. |
EmptyMipmapsMax | Allocates space for the specified amount of mipmaps (excluding the top level) but does not generate mipmaps. |