Enum wgpu::TextureViewDimension
source · [−]#[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. texture_1d in WGSL and texture1D in GLSL.
D2
A two dimensional texture. texture_2d in WGSL and texture2D in GLSL.
D2Array
A two dimensional array texture. texture_2d_array in WGSL and texture2DArray in GLSL.
Cube
A cubemap texture. texture_cube in WGSL and textureCube in GLSL.
CubeArray
A cubemap array texture. texture_cube_array in WGSL and textureCubeArray in GLSL.
D3
A three dimensional texture. texture_3d in WGSL and texture3D in GLSL.
Implementations
sourceimpl 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
sourceimpl Clone for TextureViewDimension
impl Clone for TextureViewDimension
sourcefn 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 moresourceimpl Debug for TextureViewDimension
impl Debug for TextureViewDimension
sourceimpl Default for TextureViewDimension
impl Default for TextureViewDimension
sourcefn default() -> TextureViewDimension
fn default() -> TextureViewDimension
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for TextureViewDimension
impl<'de> Deserialize<'de> for TextureViewDimension
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<TextureViewDimension, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<TextureViewDimension, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Hash for TextureViewDimension
impl Hash for TextureViewDimension
sourceimpl PartialEq<TextureViewDimension> for TextureViewDimension
impl PartialEq<TextureViewDimension> for TextureViewDimension
sourcefn eq(&self, other: &TextureViewDimension) -> bool
fn eq(&self, other: &TextureViewDimension) -> bool
sourceimpl Serialize for TextureViewDimension
impl Serialize for TextureViewDimension
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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 Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
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.