Enum wgpu_types::TextureViewDimension
source · #[repr(C)]pub enum TextureViewDimension {
D1 = 0,
D2 = 1,
D2Array = 2,
Cube = 3,
CubeArray = 4,
D3 = 5,
}
Expand description
Dimensions of a particular texture view.
Corresponds to WebGPU GPUTextureViewDimension
.
Variants§
D1 = 0
A one dimensional texture. texture_1d
in WGSL and texture1D
in GLSL.
D2 = 1
A two dimensional texture. texture_2d
in WGSL and texture2D
in GLSL.
D2Array = 2
A two dimensional array texture. texture_2d_array
in WGSL and texture2DArray
in GLSL.
Cube = 3
A cubemap texture. texture_cube
in WGSL and textureCube
in GLSL.
CubeArray = 4
A cubemap array texture. texture_cube_array
in WGSL and textureCubeArray
in GLSL.
D3 = 5
A three dimensional texture. texture_3d
in WGSL and texture3D
in GLSL.
Implementations§
source§impl TextureViewDimension
impl TextureViewDimension
sourcepub fn compatible_texture_dimension(self) -> TextureDimension
pub fn compatible_texture_dimension(self) -> TextureDimension
Get the texture dimension required of this texture view dimension.
Trait Implementations§
source§impl Clone for TextureViewDimension
impl Clone for TextureViewDimension
source§fn clone(&self) -> TextureViewDimension
fn clone(&self) -> TextureViewDimension
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for TextureViewDimension
impl Debug for TextureViewDimension
source§impl Default for TextureViewDimension
impl Default for TextureViewDimension
source§fn default() -> TextureViewDimension
fn default() -> TextureViewDimension
Returns the “default value” for a type. Read more
source§impl Hash for TextureViewDimension
impl Hash for TextureViewDimension
source§impl PartialEq for TextureViewDimension
impl PartialEq for TextureViewDimension
source§fn eq(&self, other: &TextureViewDimension) -> bool
fn eq(&self, other: &TextureViewDimension) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for TextureViewDimension
impl Eq for TextureViewDimension
impl StructuralPartialEq for TextureViewDimension
Auto Trait Implementations§
impl Freeze for TextureViewDimension
impl RefUnwindSafe for TextureViewDimension
impl Send for TextureViewDimension
impl Sync for TextureViewDimension
impl Unpin for TextureViewDimension
impl UnwindSafe for TextureViewDimension
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more