Enum wgpu::TextureViewDimension
[−]#[repr(C)]
pub enum TextureViewDimension {
D1,
D2,
D2Array,
Cube,
CubeArray,
D3,
}
Expand description
Dimensions of a particular texture view.
Corresponds to WebGPU GPUTextureViewDimension
.
Variants
D1
A one dimensional texture. texture1D
in glsl shaders.
D2
A two dimensional texture. texture2D
in glsl shaders.
D2Array
A two dimensional array texture. texture2DArray
in glsl shaders.
Cube
A cubemap texture. textureCube
in glsl shaders.
CubeArray
A cubemap array texture. textureCubeArray
in glsl shaders.
D3
A three dimensional texture. texture3D
in glsl shaders.
Implementations
impl TextureViewDimension
impl TextureViewDimension
pub 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
impl Clone for TextureViewDimension
impl Clone for TextureViewDimension
fn clone(&self) -> TextureViewDimension
fn clone(&self) -> TextureViewDimension
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Debug for TextureViewDimension
impl Debug for TextureViewDimension
impl Default for TextureViewDimension
impl Default for TextureViewDimension
fn default() -> TextureViewDimension
fn default() -> TextureViewDimension
Returns the “default value” for a type. Read more
impl Hash for TextureViewDimension
impl Hash for TextureViewDimension
impl Copy for TextureViewDimension
impl Eq for TextureViewDimension
impl StructuralEq for TextureViewDimension
impl StructuralPartialEq for TextureViewDimension
Auto Trait Implementations
impl RefUnwindSafe for TextureViewDimension
impl Send for TextureViewDimension
impl Sync for TextureViewDimension
impl Unpin for TextureViewDimension
impl UnwindSafe for TextureViewDimension
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more