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

Buffer textures are not supported at all.

The requested format is not supported in combination with the given texture buffer type.

The size of the buffer that you are trying to bind exceeds GL_MAX_TEXTURE_BUFFER_SIZE.

Trait Implementations

impl Copy for TextureCreationError
[src]

impl Clone for TextureCreationError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for TextureCreationError
[src]

[src]

Formats the value using the given formatter.

impl Display for TextureCreationError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for TextureCreationError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

The lower-level cause of this error, if any. Read more

impl From<TextureCreationError> for CreationError
[src]

[src]

Performs the conversion.