Enum wgpu_types::TextureViewDimension [−][src]
#[repr(C)]
pub enum TextureViewDimension {
D1,
D2,
D2Array,
Cube,
CubeArray,
D3,
}Expand description
Dimensions of a particular texture view.
Variants
A one dimensional texture. texture1D in glsl shaders.
A two dimensional texture. texture2D in glsl shaders.
A two dimensional array texture. texture2DArray in glsl shaders.
A cubemap texture. textureCube in glsl shaders.
A cubemap array texture. textureCubeArray in glsl shaders.
A three dimensional texture. texture3D in glsl shaders.
Implementations
Get the texture dimension required fo this texture view dimension.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for TextureViewDimensionimpl Send for TextureViewDimensionimpl Sync for TextureViewDimensionimpl Unpin for TextureViewDimensionimpl UnwindSafe for TextureViewDimensionBlanket Implementations
Mutably borrows from an owned value. Read more