Struct screen_13::driver::graphic::StencilMode
source · pub struct StencilMode {
pub fail_op: StencilOp,
pub pass_op: StencilOp,
pub depth_fail_op: StencilOp,
pub compare_op: CompareOp,
pub compare_mask: u32,
pub write_mask: u32,
pub reference: u32,
}Expand description
Specifies stencil mode during rasterization.
See stencil test.
Fields§
§fail_op: StencilOpThe action performed on samples that fail the stencil test.
pass_op: StencilOpThe action performed on samples that pass both the depth and stencil tests.
depth_fail_op: StencilOpThe action performed on samples that pass the stencil test and fail the depth test.
compare_op: CompareOpThe comparison operator used in the stencil test.
compare_mask: u32The bits of the unsigned integer stencil values participating in the stencil test.
write_mask: u32The bits of the unsigned integer stencil values updated by the stencil test in the stencil framebuffer attachment.
reference: u32An unsigned integer stencil reference value that is used in the unsigned stencil comparison.
Implementations§
source§impl StencilMode
impl StencilMode
Trait Implementations§
source§impl Clone for StencilMode
impl Clone for StencilMode
source§fn clone(&self) -> StencilMode
fn clone(&self) -> StencilMode
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 StencilMode
impl Debug for StencilMode
source§impl Default for StencilMode
impl Default for StencilMode
source§impl Hash for StencilMode
impl Hash for StencilMode
source§impl Ord for StencilMode
impl Ord for StencilMode
source§fn cmp(&self, other: &StencilMode) -> Ordering
fn cmp(&self, other: &StencilMode) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<StencilMode> for StencilMode
impl PartialEq<StencilMode> for StencilMode
source§fn eq(&self, other: &StencilMode) -> bool
fn eq(&self, other: &StencilMode) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<StencilMode> for StencilMode
impl PartialOrd<StencilMode> for StencilMode
source§fn partial_cmp(&self, other: &StencilMode) -> Option<Ordering>
fn partial_cmp(&self, other: &StencilMode) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more