Enum gfx_core::texture::Kind [−][src]
pub enum Kind { D1(Size), D1Array(Size, Layer), D2(Size, Size, AaMode), D2Array(Size, Size, Layer, AaMode), D3(Size, Size, Size), Cube(Size), CubeArray(Size, Layer), }
Specifies the kind of a texture storage to be allocated.
Variants
D1(Size)
A single row of texels.
An array of rows of texels. Equivalent to Texture2D except that texels in a different row are not sampled.
A traditional 2D texture, with rows arranged contiguously.
An array of 2D textures. Equivalent to Texture3D except that texels in a different depth level are not sampled.
A volume texture, with each 2D layer arranged contiguously.
Cube(Size)
A set of 6 2D textures, one for each face of a cube.
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][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,