Enum wgpu_types::StencilOperation
source · #[repr(C)]pub enum StencilOperation {
Keep = 0,
Zero = 1,
Replace = 2,
Invert = 3,
IncrementClamp = 4,
DecrementClamp = 5,
IncrementWrap = 6,
DecrementWrap = 7,
}
Expand description
Operation to perform on the stencil value.
Corresponds to WebGPU GPUStencilOperation
.
Variants§
Keep = 0
Keep stencil value unchanged.
Zero = 1
Set stencil value to zero.
Replace = 2
Replace stencil value with value provided in most recent call to
RenderPass::set_stencil_reference
.
Invert = 3
Bitwise inverts stencil value.
IncrementClamp = 4
Increments stencil value by one, clamping on overflow.
DecrementClamp = 5
Decrements stencil value by one, clamping on underflow.
IncrementWrap = 6
Increments stencil value by one, wrapping on overflow.
DecrementWrap = 7
Decrements stencil value by one, wrapping on underflow.
Trait Implementations§
source§impl Clone for StencilOperation
impl Clone for StencilOperation
source§fn clone(&self) -> StencilOperation
fn clone(&self) -> StencilOperation
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 StencilOperation
impl Debug for StencilOperation
source§impl Default for StencilOperation
impl Default for StencilOperation
source§fn default() -> StencilOperation
fn default() -> StencilOperation
Returns the “default value” for a type. Read more
source§impl Hash for StencilOperation
impl Hash for StencilOperation
source§impl PartialEq for StencilOperation
impl PartialEq for StencilOperation
source§fn eq(&self, other: &StencilOperation) -> bool
fn eq(&self, other: &StencilOperation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for StencilOperation
impl Eq for StencilOperation
impl StructuralPartialEq for StencilOperation
Auto Trait Implementations§
impl Freeze for StencilOperation
impl RefUnwindSafe for StencilOperation
impl Send for StencilOperation
impl Sync for StencilOperation
impl Unpin for StencilOperation
impl UnwindSafe for StencilOperation
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