Enum gfx::tex::Kind [] [src]

pub enum Kind {
    D1(u16),
    D1Array(u16, u16),
    D2(u16, u16, AaMode),
    D2Array(u16, u16, u16, AaMode),
    D3(u16, u16, u16),
    Cube(u16),
    CubeArray(u16, u16),
}

Specifies the kind of a texture storage to be allocated.

Variants

D1

A single row of texels.

D1Array

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

D2

A traditional 2D texture, with rows arranged contiguously.

D2Array

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

D3

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

Cube

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

CubeArray

An array of Cube textures.

Methods

impl Kind

fn get_dimensions(&self) -> (u16, u16, u16, AaMode)

Get texture dimensions, with 0 values where not applicable.

fn get_level_dimensions(&self, level: u8) -> (u16, u16, u16, AaMode)

Get the dimensionality of a particular mipmap level.

fn get_num_levels(&self) -> u8

Count the number of mipmap levels.

fn get_num_slices(&self) -> Option<u16>

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

fn is_cube(&self) -> bool

Check if it's one of the cube kinds.

Trait Implementations

Derived Implementations

impl Debug for Kind

fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>

impl Clone for Kind

fn clone(&self) -> Kind

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

impl Copy for Kind

impl Hash for Kind

fn hash<__H>(&self, __arg_0: &mut __H) where __H: Hasher

impl PartialOrd<Kind> for Kind

fn partial_cmp(&self, __arg_0: &Kind) -> Option<Ordering>

fn lt(&self, __arg_0: &Kind) -> bool

fn le(&self, __arg_0: &Kind) -> bool

fn gt(&self, __arg_0: &Kind) -> bool

fn ge(&self, __arg_0: &Kind) -> bool

impl PartialEq<Kind> for Kind

fn eq(&self, __arg_0: &Kind) -> bool

fn ne(&self, __arg_0: &Kind) -> bool

impl Ord for Kind

fn cmp(&self, __arg_0: &Kind) -> Ordering

impl Eq for Kind