[][src]Enum beryllium::SurfaceFormat

pub enum SurfaceFormat {
    Indexed4,
    Indexed8,
    Direct16 {
        r_mask: u32,
        g_mask: u32,
        b_mask: u32,
        a_mask: u32,
    },
    Direct24 {
        r_mask: u32,
        g_mask: u32,
        b_mask: u32,
        a_mask: u32,
    },
    Direct32 {
        r_mask: u32,
        g_mask: u32,
        b_mask: u32,
        a_mask: u32,
    },
}

The desired format for a surface you are creating.

  • Indexed formats store their pixel data as indexes into the Surface's palette of Color values.
  • Direct formats store their pixel data "inline", according to the masks specified. You can specify a mask of 0 to get a default mask position, but if you give an Alpha mask of 0 you won't have Alpha support in that Surface.

Variants

Indexed4

4 bits per pixel paletted.

Indexed8

8 bits per pixel paletted.

Direct16

16 bits per pixel direct color.

Fields of Direct16

r_mask: u32g_mask: u32b_mask: u32a_mask: u32
Direct24

24 bits per pixel direct color.

Fields of Direct24

r_mask: u32g_mask: u32b_mask: u32a_mask: u32
Direct32

32 bits per pixel direct color.

Fields of Direct32

r_mask: u32g_mask: u32b_mask: u32a_mask: u32

Methods

impl SurfaceFormat[src]

pub const DIRECT16_DEFAULT: Self[src]

Alias for the default Direct16 surface format.

Note that this format is non-Alpha

pub const DIRECT24_DEFAULT: Self[src]

Alias for the default Direct24 surface format.

Note that this format is non-Alpha

pub const DIRECT32_DEFAULT: Self[src]

Alias for the default Direct32 surface format.

Note that this format is non-Alpha

Trait Implementations

impl Copy for SurfaceFormat[src]

impl Clone for SurfaceFormat[src]

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

Performs copy-assignment from source. Read more

impl Debug for SurfaceFormat[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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