Enum glium::texture::UncompressedIntFormat
[−]
[src]
pub enum UncompressedIntFormat {
I8,
I16,
I32,
I8I8,
I16I16,
I32I32,
I8I8I8,
I16I16I16,
I32I32I32,
I8I8I8I8,
I16I16I16I16,
I32I32I32I32,
}List of uncompressed pixel formats that contain signed integral data.
Variants
I8 | |
I16 | |
I32 | |
I8I8 | |
I16I16 | |
I32I32 | |
I8I8I8 | |
I16I16I16 | May not be supported by renderbuffers. |
I32I32I32 | May not be supported by renderbuffers. |
I8I8I8I8 | May not be supported by renderbuffers. |
I16I16I16I16 | |
I32I32I32I32 |
Methods
impl UncompressedIntFormat
fn to_texture_format(self) -> TextureFormat
Turns this format into a more generic TextureFormat.