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

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.

Methods

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 PartialEq<Kind> for Kind[src]

impl PartialOrd<Kind> for Kind[src]

impl Eq for Kind[src]

impl Copy for Kind[src]

impl Ord for Kind[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl Clone for Kind[src]

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

Performs copy-assignment from source. Read more

impl Debug for Kind[src]

impl Hash for Kind[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

Auto Trait Implementations

impl Send for Kind

impl Sync for Kind

Blanket Implementations

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

impl<T> From for T[src]

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

type Owned = T

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

type Error = !

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

The type returned in the event of a conversion error.

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

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

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

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

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

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

The type returned in the event of a conversion error.