#[repr(u32)]pub enum TessWindingRule {
TESS_WINDING_ODD = 0,
TESS_WINDING_NONZERO = 1,
TESS_WINDING_POSITIVE = 2,
TESS_WINDING_NEGATIVE = 3,
TESS_WINDING_ABS_GEQ_TWO = 4,
}Expand description
Determines how should tessTesselate interpret it’s input, see OpenGL tesselation docs for more
Variants§
TESS_WINDING_ODD = 0
TESS_WINDING_NONZERO = 1
TESS_WINDING_POSITIVE = 2
TESS_WINDING_NEGATIVE = 3
TESS_WINDING_ABS_GEQ_TWO = 4
Trait Implementations§
Source§impl Clone for TessWindingRule
impl Clone for TessWindingRule
Source§fn clone(&self) -> TessWindingRule
fn clone(&self) -> TessWindingRule
Returns a duplicate 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 TessWindingRule
impl Debug for TessWindingRule
impl Copy for TessWindingRule
Auto Trait Implementations§
impl Freeze for TessWindingRule
impl RefUnwindSafe for TessWindingRule
impl Send for TessWindingRule
impl Sync for TessWindingRule
impl Unpin for TessWindingRule
impl UnwindSafe for TessWindingRule
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