Enum wgpu_types::StencilOperation
source · #[repr(C)]
pub enum StencilOperation {
Keep,
Zero,
Replace,
Invert,
IncrementClamp,
DecrementClamp,
IncrementWrap,
DecrementWrap,
}Expand description
Operation to perform on the stencil value.
Variants§
Keep
Keep stencil value unchanged.
Zero
Set stencil value to zero.
Replace
Replace stencil value with value provided in most recent call to [RenderPass::set_stencil_reference].
Invert
Bitwise inverts stencil value.
IncrementClamp
Increments stencil value by one, clamping on overflow.
DecrementClamp
Decrements stencil value by one, clamping on underflow.
IncrementWrap
Increments stencil value by one, wrapping on overflow.
DecrementWrap
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 more