Enum wgpu::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 of this texture view dimension.
Trait Implementations
Returns the “default value” for a type. Read more
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<TextureViewDimension, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub 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
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub 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
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
Mutably borrows from an owned value. Read more
impl<T> CallHasher for T where
T: Hash,
impl<T> CallHasher for T where
T: Hash,
Compare self to key and return true if they are equal.