[][src]Enum gfx_hal::format::SurfaceType

#[repr(u8)]
pub enum SurfaceType {
    R4_G4,
    R4_G4_B4_A4,
    B4_G4_R4_A4,
    R5_G6_B5,
    B5_G6_R5,
    R5_G5_B5_A1,
    B5_G5_R5_A1,
    A1_R5_G5_B5,
    R8,
    R8_G8,
    R8_G8_B8,
    B8_G8_R8,
    R8_G8_B8_A8,
    B8_G8_R8_A8,
    A8_B8_G8_R8,
    A2_R10_G10_B10,
    A2_B10_G10_R10,
    R16,
    R16_G16,
    R16_G16_B16,
    R16_G16_B16_A16,
    R32,
    R32_G32,
    R32_G32_B32,
    R32_G32_B32_A32,
    R64,
    R64_G64,
    R64_G64_B64,
    R64_G64_B64_A64,
    B10_G11_R11,
    E5_B9_G9_R9,
    D16,
    X8D24,
    D32,
    S8,
    D16_S8,
    D24_S8,
    D32_S8,
    BC1_RGB,
    BC1_RGBA,
    BC2,
    BC3,
    BC4,
    BC5,
    BC6,
    BC7,
    ETC2_R8_G8_B8,
    ETC2_R8_G8_B8_A1,
    ETC2_R8_G8_B8_A8,
    EAC_R11,
    EAC_R11_G11,
    ASTC_4x4,
    ASTC_5x4,
    ASTC_5x5,
    ASTC_6x5,
    ASTC_6x6,
    ASTC_8x5,
    ASTC_8x6,
    ASTC_8x8,
    ASTC_10x5,
    ASTC_10x6,
    ASTC_10x8,
    ASTC_10x10,
    ASTC_12x10,
    ASTC_12x12,
}

Type of the allocated texture surface. It is supposed to only carry information about the number of bits per each channel. The actual types are up to the views to decide and interpret. The actual components are up to the swizzle to define.

Variants

R4_G4R4_G4_B4_A4B4_G4_R4_A4R5_G6_B5B5_G6_R5R5_G5_B5_A1B5_G5_R5_A1A1_R5_G5_B5R8R8_G8R8_G8_B8B8_G8_R8R8_G8_B8_A8B8_G8_R8_A8A8_B8_G8_R8A2_R10_G10_B10A2_B10_G10_R10R16R16_G16R16_G16_B16R16_G16_B16_A16R32R32_G32R32_G32_B32R32_G32_B32_A32R64R64_G64R64_G64_B64R64_G64_B64_A64B10_G11_R11E5_B9_G9_R9D16X8D24D32S8D16_S8D24_S8D32_S8BC1_RGBBC1_RGBABC2BC3BC4BC5BC6BC7ETC2_R8_G8_B8ETC2_R8_G8_B8_A1ETC2_R8_G8_B8_A8EAC_R11EAC_R11_G11ASTC_4x4ASTC_5x4ASTC_5x5ASTC_6x5ASTC_6x6ASTC_8x5ASTC_8x6ASTC_8x8ASTC_10x5ASTC_10x6ASTC_10x8ASTC_10x10ASTC_12x10ASTC_12x12

Methods

impl SurfaceType[src]

pub fn describe_bits(&self) -> FormatBits[src]

Return the bits for this format.

pub fn desc(&self) -> FormatDesc[src]

Return the format descriptor.

Trait Implementations

impl Copy for SurfaceType[src]

impl Eq for SurfaceType[src]

impl Clone for SurfaceType[src]

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

Performs copy-assignment from source. Read more

impl PartialOrd<SurfaceType> for SurfaceType[src]

#[must_use] fn lt(&self, other: &Rhs) -> bool1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use] fn le(&self, other: &Rhs) -> bool1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use] fn gt(&self, other: &Rhs) -> bool1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use] fn ge(&self, other: &Rhs) -> bool1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialEq<SurfaceType> for SurfaceType[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Ord for SurfaceType[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl Hash for SurfaceType[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

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

impl Debug for SurfaceType[src]

impl Serialize for SurfaceType[src]

impl<'de> Deserialize<'de> for SurfaceType[src]

Auto Trait Implementations

impl Unpin for SurfaceType

impl Sync for SurfaceType

impl Send for SurfaceType

impl UnwindSafe for SurfaceType

impl RefUnwindSafe for SurfaceType

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T, U> Into<U> for T where
    U: From<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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]