Struct gfx::state::Stencil
[−]
[src]
pub struct Stencil {
pub front: StencilSide,
pub back: StencilSide,
}Complete stencil state, specifying how to handle the front and back side of a face.
Fields
front: StencilSide
back: StencilSide
Methods
impl Stencil[src]
fn new(
fun: Comparison,
mask: u8,
ops: (StencilOp, StencilOp, StencilOp)
) -> Stencil[src]
fun: Comparison,
mask: u8,
ops: (StencilOp, StencilOp, StencilOp)
) -> Stencil
Create a new stencil state with a given function.
Trait Implementations
impl Ord for Stencil[src]
impl Copy for Stencil[src]
impl Hash for Stencil[src]
fn hash<__H>(&self, __arg_0: &mut __H) where
__H: Hasher, [src]
__H: Hasher,
Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl Clone for Stencil[src]
fn clone(&self) -> Stencil[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Eq for Stencil[src]
impl PartialEq<Stencil> for Stencil[src]
fn eq(&self, __arg_0: &Stencil) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Stencil) -> bool[src]
This method tests for !=.
impl Debug for Stencil[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter.