Enum gfx_core::texture::Kind[][src]

pub enum Kind {
    D1(Size),
    D1Array(SizeLayer),
    D2(SizeSizeAaMode),
    D2Array(SizeSizeLayerAaMode),
    D3(SizeSizeSize),
    Cube(Size),
    CubeArray(SizeLayer),
}

Specifies the kind of a texture storage to be allocated.

Variants

D1(Size)

A single row of texels.

D1Array(SizeLayer)

An array of rows of texels. Equivalent to Texture2D except that texels in a different row are not sampled.

D2(SizeSizeAaMode)

A traditional 2D texture, with rows arranged contiguously.

D2Array(SizeSizeLayerAaMode)

An array of 2D textures. Equivalent to Texture3D except that texels in a different depth level are not sampled.

D3(SizeSizeSize)

A volume texture, with each 2D layer arranged contiguously.

Cube(Size)

A set of 6 2D textures, one for each face of a cube.

CubeArray(SizeLayer)

An array of Cube textures.

Implementations

impl Kind[src]

pub fn get_dimensions(&self) -> Dimensions[src]

Get texture dimensions, with 0 values where not applicable.

pub fn get_level_dimensions(&self, level: Level) -> Dimensions[src]

Get the dimensionality of a particular mipmap level.

pub fn get_num_levels(&self) -> Level[src]

Count the number of mipmap levels.

pub fn get_num_slices(&self) -> Option<Layer>[src]

Return the number of slices for an array, or None for non-arrays.

pub fn is_cube(&self) -> bool[src]

Check if it’s one of the cube kinds.

Trait Implementations

impl Clone for Kind[src]

impl Copy for Kind[src]

impl Debug for Kind[src]

impl Eq for Kind[src]

impl Hash for Kind[src]

impl Ord for Kind[src]

impl PartialEq<Kind> for Kind[src]

impl PartialOrd<Kind> for Kind[src]

impl StructuralEq for Kind[src]

impl StructuralPartialEq for Kind[src]

Auto Trait Implementations

impl RefUnwindSafe for Kind

impl Send for Kind

impl Sync for Kind

impl Unpin for Kind

impl UnwindSafe for Kind

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.