Enum glium::texture::buffer_texture::BufferTextureType
[−]
[src]
pub enum BufferTextureType { Float, Integral, Unsigned, }
Type of a buffer texture.
Variants
Float | The texture will behave as if it contained floating-point data. It can be sampled with
a If the buffer actually contains integer values, they will be normalized so that |
Integral | The texture will behave as if it contained signed integral data. It can be sampled with
a |
Unsigned | The texture will behave as if it contained unsigned integral data. It can be sampled with
a |