Enum glium::texture::buffer_texture::TextureCreationError
[−]
[src]
pub enum TextureCreationError {
NotSupported,
FormatNotSupported,
TooLarge,
}Error that can happen while building the texture part of a buffer texture.
Variants
NotSupportedBuffer textures are not supported at all.
FormatNotSupportedThe requested format is not supported in combination with the given texture buffer type.
TooLargeThe size of the buffer that you are trying to bind exceeds GL_MAX_TEXTURE_BUFFER_SIZE.
Trait Implementations
impl Debug for TextureCreationError[src]
impl Clone for TextureCreationError[src]
fn clone(&self) -> TextureCreationError
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more