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

May not be supported by renderbuffers.

May not be supported by renderbuffers.

May not be supported by renderbuffers.

Methods

impl UncompressedIntFormat
[src]

[src]

Returns a list of all the possible values of this enumeration.

[src]

Turns this format into a more generic TextureFormat.

[src]

Returns true if this format is supported by the backend.

[src]

Returns true if a texture or renderbuffer with this format can be used as a framebuffer attachment.

Trait Implementations

impl Debug for UncompressedIntFormat
[src]

[src]

Formats the value using the given formatter.

impl Clone for UncompressedIntFormat
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for UncompressedIntFormat
[src]

impl Hash for UncompressedIntFormat
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for UncompressedIntFormat
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Eq for UncompressedIntFormat
[src]