[][src]Enum mallumo_gls::raw::TextureInternalFormat

pub enum TextureInternalFormat {
    R8,
    R8SN,
    R8I,
    R8UI,
    R16,
    R16F,
    R16SN,
    R16I,
    R16UI,
    R32F,
    R32I,
    R32UI,
    RG8,
    RG8SN,
    RG8I,
    RG8UI,
    RG16,
    RG16F,
    RG16SN,
    RG16I,
    RG16UI,
    RG32F,
    RG32I,
    RG32UI,
    RGB8,
    RGB8SN,
    RGB8I,
    RGB8UI,
    RGB16,
    RGB16F,
    RGB16SN,
    RGB16I,
    RGB16UI,
    RGB32F,
    RGB32I,
    RGB32UI,
    RGBA8,
    RGBA8SN,
    RGBA8I,
    RGBA8UI,
    RGBA16,
    RGBA16F,
    RGBA16SN,
    RGBA16I,
    RGBA16UI,
    RGBA32F,
    RGBA32I,
    RGBA32UI,
    DepthComponent16F,
    DepthComponent24F,
    DepthComponent32F,
    StencilIndex8U,
    Depth24FStencil8U,
    Depth32FStencil8U,
    Alpha,
    CompressedRGBABPTCUN,
    CompressedRGBDTX1,
    CompressedRGBADXT1,
    CompressedRGBADXT3,
    CompressedRGBADXT5,
}

Variants

R8R8SNR8IR8UIR16R16FR16SNR16IR16UIR32FR32IR32UIRG8RG8SNRG8IRG8UIRG16RG16FRG16SNRG16IRG16UIRG32FRG32IRG32UIRGB8RGB8SNRGB8IRGB8UIRGB16RGB16FRGB16SNRGB16IRGB16UIRGB32FRGB32IRGB32UIRGBA8RGBA8SNRGBA8IRGBA8UIRGBA16RGBA16FRGBA16SNRGBA16IRGBA16UIRGBA32FRGBA32IRGBA32UIDepthComponent16FDepthComponent24FDepthComponent32FStencilIndex8UDepth24FStencil8UDepth32FStencil8UAlphaCompressedRGBABPTCUNCompressedRGBDTX1CompressedRGBADXT1CompressedRGBADXT3CompressedRGBADXT5

Trait Implementations

impl Copy for TextureInternalFormat[src]

impl PartialEq<TextureInternalFormat> for TextureInternalFormat[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Clone for TextureInternalFormat[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for TextureInternalFormat[src]

impl Debug for TextureInternalFormat[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.