Enum gfx::core::tex::Kind
[−]
pub enum Kind {
D1(u16),
D1Array(u16, u8),
D2(u16, u16, AaMode),
D2Array(u16, u16, u8, AaMode),
D3(u16, u16, u16),
Cube(u16, u16),
CubeArray(u16, u16, u8),
}Specifies the kind of a texture storage to be allocated.
Variants
D1(u16)A single row of texels.
D1Array(u16, u8)An array of rows of texels. Equivalent to Texture2D except that texels in a different row are not sampled.
D2(u16, u16, AaMode)A traditional 2D texture, with rows arranged contiguously.
D2Array(u16, u16, u8, AaMode)An array of 2D textures. Equivalent to Texture3D except that texels in a different depth level are not sampled.
D3(u16, u16, u16)A volume texture, with each 2D layer arranged contiguously.
Cube(u16, u16)A set of 6 2D textures, one for each face of a cube.
CubeArray(u16, u16, u8)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.
Trait Implementations
impl Debug for Kind
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.
impl Clone for Kind
fn clone(&self) -> Kind
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Copy for Kind
impl Hash for Kind
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
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Kind) -> bool
This method tests for !=.