Struct wgpu_types::RenderBundleDepthStencil
source · #[repr(C)]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
If the depth aspect of the depth stencil attachment is going to be written to.
This must match the RenderPassDepthStencilAttachment::depth_ops
of the renderpass this render bundle is executed in.
If depth_ops is Some(..)
this must be false. If it is None
this must be true.
stencil_read_only: bool
If the stencil aspect of the depth stencil attachment is going to be written to.
This must match the RenderPassDepthStencilAttachment::stencil_ops
of the renderpass this render bundle is executed in.
If depth_ops is Some(..)
this must be false. If it is None
this must be true.
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 for RenderBundleDepthStencil
impl PartialEq 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 StructuralPartialEq for RenderBundleDepthStencil
Auto Trait Implementations§
impl Freeze for RenderBundleDepthStencil
impl RefUnwindSafe for RenderBundleDepthStencil
impl Send for RenderBundleDepthStencil
impl Sync for RenderBundleDepthStencil
impl Unpin for RenderBundleDepthStencil
impl UnwindSafe for RenderBundleDepthStencil
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
Mutably borrows from an owned value. Read more