[][src]Enum raylib_sys::PixelFormat

#[repr(u32)]pub enum PixelFormat {
    UNCOMPRESSED_GRAYSCALE,
    UNCOMPRESSED_GRAY_ALPHA,
    UNCOMPRESSED_R5G6B5,
    UNCOMPRESSED_R8G8B8,
    UNCOMPRESSED_R5G5B5A1,
    UNCOMPRESSED_R4G4B4A4,
    UNCOMPRESSED_R8G8B8A8,
    UNCOMPRESSED_R32,
    UNCOMPRESSED_R32G32B32,
    UNCOMPRESSED_R32G32B32A32,
    COMPRESSED_DXT1_RGB,
    COMPRESSED_DXT1_RGBA,
    COMPRESSED_DXT3_RGBA,
    COMPRESSED_DXT5_RGBA,
    COMPRESSED_ETC1_RGB,
    COMPRESSED_ETC2_RGB,
    COMPRESSED_ETC2_EAC_RGBA,
    COMPRESSED_PVRT_RGB,
    COMPRESSED_PVRT_RGBA,
    COMPRESSED_ASTC_4x4_RGBA,
    COMPRESSED_ASTC_8x8_RGBA,
}

Variants

UNCOMPRESSED_GRAYSCALE
UNCOMPRESSED_GRAY_ALPHA
UNCOMPRESSED_R5G6B5
UNCOMPRESSED_R8G8B8
UNCOMPRESSED_R5G5B5A1
UNCOMPRESSED_R4G4B4A4
UNCOMPRESSED_R8G8B8A8
UNCOMPRESSED_R32
UNCOMPRESSED_R32G32B32
UNCOMPRESSED_R32G32B32A32
COMPRESSED_DXT1_RGB
COMPRESSED_DXT1_RGBA
COMPRESSED_DXT3_RGBA
COMPRESSED_DXT5_RGBA
COMPRESSED_ETC1_RGB
COMPRESSED_ETC2_RGB
COMPRESSED_ETC2_EAC_RGBA
COMPRESSED_PVRT_RGB
COMPRESSED_PVRT_RGBA
COMPRESSED_ASTC_4x4_RGBA
COMPRESSED_ASTC_8x8_RGBA

Trait Implementations

impl Clone for PixelFormat[src]

impl Copy for PixelFormat[src]

impl Debug for PixelFormat[src]

impl Eq for PixelFormat[src]

impl Hash for PixelFormat[src]

impl PartialEq<PixelFormat> for PixelFormat[src]

impl StructuralEq for PixelFormat[src]

impl StructuralPartialEq for PixelFormat[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.