Enum glin::fbo::ColorFormat[][src]

#[repr(u32)]
pub enum ColorFormat {
Show variants R8, R16, R16F, R32F, RG8, RG16, RG16F, RG32F, RGB8, RGB16, RGB16F, RGB32F, RGBA8, RGBA16, RGBA16F, RGBA32F,
}

All the possible formats for a color attachment

Variants

R8
R16
R16F
R32F
RG8
RG16
RG16F
RG32F
RGB8
RGB16
RGB16F
RGB32F
RGBA8
RGBA16
RGBA16F
RGBA32F

Implementations

impl ColorFormat[src]

pub fn from(internal_format: GLenum) -> Option<ColorFormat>[src]

Trait Implementations

impl Clone for ColorFormat[src]

impl Debug for ColorFormat[src]

impl Default for ColorFormat[src]

impl Copy for ColorFormat[src]

Auto Trait Implementations

impl RefUnwindSafe for ColorFormat

impl Send for ColorFormat

impl Sync for ColorFormat

impl Unpin for ColorFormat

impl UnwindSafe for ColorFormat

Blanket Implementations

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

impl<T> Any for T where
    T: Any
[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> Pointable for T[src]

type Init = T

The type for initializers.

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.