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
sourceimpl StencilMode
impl StencilMode
Trait Implementations
sourceimpl Clone for StencilMode
impl Clone for StencilMode
sourcefn clone(&self) -> StencilMode
fn clone(&self) -> StencilMode
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for StencilMode
impl Debug for StencilMode
sourceimpl Default for StencilMode
impl Default for StencilMode
sourceimpl Hash for StencilMode
impl Hash for StencilMode
sourceimpl Ord for StencilMode
impl Ord for StencilMode
sourcefn cmp(&self, other: &StencilMode) -> Ordering
fn cmp(&self, other: &StencilMode) -> Ordering
1.21.0 · sourcefn 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
1.21.0 · sourcefn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<StencilMode> for StencilMode
impl PartialEq<StencilMode> for StencilMode
sourcefn eq(&self, other: &StencilMode) -> bool
fn eq(&self, other: &StencilMode) -> bool
sourceimpl PartialOrd<StencilMode> for StencilMode
impl PartialOrd<StencilMode> for StencilMode
sourcefn partial_cmp(&self, other: &StencilMode) -> Option<Ordering>
fn partial_cmp(&self, other: &StencilMode) -> Option<Ordering>
1.0.0 · sourcefn 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 moreimpl Copy for StencilMode
impl Eq for StencilMode
impl StructuralEq for StencilMode
impl StructuralPartialEq for StencilMode
Auto Trait Implementations
impl RefUnwindSafe for StencilMode
impl Send for StencilMode
impl Sync for StencilMode
impl Unpin for StencilMode
impl UnwindSafe for StencilMode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more