Struct wgpu_types::TextureViewDescriptor
source · pub struct TextureViewDescriptor<L> {
pub label: L,
pub format: Option<TextureFormat>,
pub dimension: Option<TextureViewDimension>,
pub usage: Option<TextureUsages>,
pub aspect: TextureAspect,
pub base_mip_level: u32,
pub mip_level_count: Option<u32>,
pub base_array_layer: u32,
pub array_layer_count: Option<u32>,
}
Expand description
Describes a TextureView
.
For use with Texture::create_view
.
Corresponds to WebGPU GPUTextureViewDescriptor
.
Fields§
§label: L
Debug label of the texture view. This will show up in graphics debuggers for easy identification.
format: Option<TextureFormat>
Format of the texture view. Either must be the same as the texture format or in the list
of view_formats
in the texture’s descriptor.
dimension: Option<TextureViewDimension>
The dimension of the texture view. For 1D textures, this must be D1
. For 2D textures it must be one of
D2
, D2Array
, Cube
, and CubeArray
. For 3D textures it must be D3
usage: Option<TextureUsages>
The allowed usage(s) for the texture view. Must be a subset of the usage flags of the texture. If not provided, defaults to the full set of usage flags of the texture.
aspect: TextureAspect
Aspect of the texture. Color textures must be TextureAspect::All
.
base_mip_level: u32
Base mip level.
mip_level_count: Option<u32>
Mip level count.
If Some(count)
, base_mip_level + count
must be less or equal to underlying texture mip count.
If None
, considered to include the rest of the mipmap levels, but at least 1 in total.
base_array_layer: u32
Base array layer.
array_layer_count: Option<u32>
Layer count.
If Some(count)
, base_array_layer + count
must be less or equal to the underlying array count.
If None
, considered to include the rest of the array layers, but at least 1 in total.
Trait Implementations§
source§impl<L: Clone> Clone for TextureViewDescriptor<L>
impl<L: Clone> Clone for TextureViewDescriptor<L>
source§fn clone(&self) -> TextureViewDescriptor<L>
fn clone(&self) -> TextureViewDescriptor<L>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<L: Debug> Debug for TextureViewDescriptor<L>
impl<L: Debug> Debug for TextureViewDescriptor<L>
source§impl<L: Default> Default for TextureViewDescriptor<L>
impl<L: Default> Default for TextureViewDescriptor<L>
source§fn default() -> TextureViewDescriptor<L>
fn default() -> TextureViewDescriptor<L>
source§impl<L: PartialEq> PartialEq for TextureViewDescriptor<L>
impl<L: PartialEq> PartialEq for TextureViewDescriptor<L>
impl<L: Eq> Eq for TextureViewDescriptor<L>
impl<L> StructuralPartialEq for TextureViewDescriptor<L>
Auto Trait Implementations§
impl<L> Freeze for TextureViewDescriptor<L>where
L: Freeze,
impl<L> RefUnwindSafe for TextureViewDescriptor<L>where
L: RefUnwindSafe,
impl<L> Send for TextureViewDescriptor<L>where
L: Send,
impl<L> Sync for TextureViewDescriptor<L>where
L: Sync,
impl<L> Unpin for TextureViewDescriptor<L>where
L: Unpin,
impl<L> UnwindSafe for TextureViewDescriptor<L>where
L: UnwindSafe,
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)