Enum glium::draw_parameters::StencilOperation
source · #[repr(u32)]pub enum StencilOperation {
Keep,
Zero,
Replace,
Increment,
IncrementWrap,
Decrement,
DecrementWrap,
Invert,
}
Expand description
Specificies which operation the GPU will do depending on the result of the stencil test.
Variants§
Keep
Keeps the value currently in the stencil buffer.
Zero
Writes zero in the stencil buffer.
Replace
Writes the reference value (stencil_reference_value_clockwise
or
stencil_reference_value_counter_clockwise
) in the stencil buffer.
Increment
Increments the value currently in the stencil buffer. If the value is the maximum, don’t do anything.
IncrementWrap
Increments the value currently in the stencil buffer. If the value is the
maximum, wrap to 0
.
Decrement
Decrements the value currently in the stencil buffer. If the value is 0
,
don’t do anything.
DecrementWrap
Decrements the value currently in the stencil buffer. If the value is 0
,
wrap to -1
.
Invert
Inverts each bit of the value.
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 moresource§impl Debug for StencilOperation
impl Debug for StencilOperation
source§impl PartialEq<StencilOperation> for StencilOperation
impl PartialEq<StencilOperation> for StencilOperation
source§fn eq(&self, other: &StencilOperation) -> bool
fn eq(&self, other: &StencilOperation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for StencilOperation
impl Eq for StencilOperation
impl StructuralEq for StencilOperation
impl StructuralPartialEq for StencilOperation
Auto Trait Implementations§
impl RefUnwindSafe for StencilOperation
impl Send for StencilOperation
impl Sync for StencilOperation
impl Unpin for StencilOperation
impl UnwindSafe for StencilOperation
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Content for Twhere
T: Copy,
impl<T> Content for Twhere T: Copy,
source§fn read<F, E>(size: usize, f: F) -> Result<T, E>where
F: FnOnce(&mut T) -> Result<(), E>,
fn read<F, E>(size: usize, f: F) -> Result<T, E>where F: FnOnce(&mut T) -> Result<(), E>,
Prepares an output buffer, then turns this buffer into an
Owned
.source§fn get_elements_size() -> usize
fn get_elements_size() -> usize
Returns the size of each element.
source§fn to_void_ptr(&self) -> *const ()
fn to_void_ptr(&self) -> *const ()
Produces a pointer to the data.
source§fn ref_from_ptr<'a>(ptr: *mut (), size: usize) -> Option<*mut T>
fn ref_from_ptr<'a>(ptr: *mut (), size: usize) -> Option<*mut T>
Builds a pointer to this type from a raw pointer.
source§fn is_size_suitable(size: usize) -> bool
fn is_size_suitable(size: usize) -> bool
Returns true if the size is suitable to store a type like this.