Struct wgpu::RenderBundleDepthStencil
source · pub struct RenderBundleDepthStencil {
pub format: TextureFormat,
pub depth_read_only: bool,
pub stencil_read_only: bool,
}
Expand description
Describes the depth/stencil attachment for render bundles.
Corresponds to a portion of WebGPU GPURenderBundleEncoderDescriptor
.
Fields§
§format: TextureFormat
Format of the attachment.
depth_read_only: bool
True if the depth aspect is used but not modified.
stencil_read_only: bool
True if the stencil aspect is used but not modified.
Trait Implementations§
source§impl Clone for RenderBundleDepthStencil
impl Clone for RenderBundleDepthStencil
source§fn clone(&self) -> RenderBundleDepthStencil
fn clone(&self) -> RenderBundleDepthStencil
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RenderBundleDepthStencil
impl Debug for RenderBundleDepthStencil
source§impl Hash for RenderBundleDepthStencil
impl Hash for RenderBundleDepthStencil
source§impl PartialEq<RenderBundleDepthStencil> for RenderBundleDepthStencil
impl PartialEq<RenderBundleDepthStencil> for RenderBundleDepthStencil
source§fn eq(&self, other: &RenderBundleDepthStencil) -> bool
fn eq(&self, other: &RenderBundleDepthStencil) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for RenderBundleDepthStencil
impl Eq for RenderBundleDepthStencil
impl StructuralEq for RenderBundleDepthStencil
impl StructuralPartialEq for RenderBundleDepthStencil
Auto Trait Implementations§
impl RefUnwindSafe for RenderBundleDepthStencil
impl Send for RenderBundleDepthStencil
impl Sync for RenderBundleDepthStencil
impl Unpin for RenderBundleDepthStencil
impl UnwindSafe for RenderBundleDepthStencil
Blanket Implementations§
source§impl<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,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.