#[repr(u32)]pub enum ClearMask {
Colour = 16_384,
Depth = 256,
Stencil = 1_024,
ColourDepth = 16_640,
ColourStencil = 17_408,
DepthStencil = 1_280,
ColourDepthStencil = 17_664,
}Available on crate features
opengl only.Expand description
Mask that indicate the buffers to be cleared.
Variants§
Colour = 16_384
Depth = 256
Stencil = 1_024
ColourDepth = 16_640
ColourStencil = 17_408
DepthStencil = 1_280
ColourDepthStencil = 17_664
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ClearMask
impl RefUnwindSafe for ClearMask
impl Send for ClearMask
impl Sync for ClearMask
impl Unpin for ClearMask
impl UnsafeUnpin for ClearMask
impl UnwindSafe for ClearMask
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