Struct gfx_hal::pso::StencilTest[][src]

pub struct StencilTest {
    pub faces: Sided<StencilFace>,
    pub read_masks: StencilValues,
    pub write_masks: StencilValues,
    pub reference_values: StencilValues,
}

Defines a stencil test. Stencil testing is an operation performed to cull fragments; the new fragment is tested against the value held in the stencil buffer, and if the test fails the fragment is discarded.

Fields

faces: Sided<StencilFace>

Operations for stencil faces.

read_masks: StencilValues

Masks that are ANDd with both the stencil buffer value and the reference value when they are read before doing the stencil test.

write_masks: StencilValues

Mask that are ANDd with the stencil value before writing to the stencil buffer.

reference_values: StencilValues

The reference values used for stencil tests.

Trait Implementations

impl Clone for StencilTest[src]

impl Copy for StencilTest[src]

impl Debug for StencilTest[src]

impl Default for StencilTest[src]

impl Eq for StencilTest[src]

impl Hash for StencilTest[src]

impl PartialEq<StencilTest> for StencilTest[src]

impl StructuralEq for StencilTest[src]

impl StructuralPartialEq for StencilTest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.