[−][src]Struct graphics::draw_state::DrawState
Graphics draw state used for blending, clipping and stencil rendering.
Fields
scissor: Option<[u32; 4]>
Scissor mask to use. If set, no pixel outside of this rectangle (in screen space) will be written to as a result of rendering.
stencil: Option<Stencil>
Stencil test to use. If None, no stencil testing is done.
blend: Option<Blend>
Blend function to use. If None, blending is disabled.
Implementations
impl DrawState
[src][−]
pub fn new_alpha() -> DrawState
[src][−]
Uses alpha blending.
pub fn new_clip() -> DrawState
[src][−]
Draws to stencil buffer with value 255. This can be used for clipping.
For nested clipping, clear the stencil buffer and use DrawState::new_increment
.
pub fn new_increment() -> DrawState
[src][−]
Increases stencil buffer. This can be used for nested clipping.
pub fn new_inside() -> DrawState
[src][−]
Tests against stencil buffer with value 255. Draws inside the shape defined by stencil buffer.
pub fn new_outside() -> DrawState
[src][−]
Tests against stencil buffer with value 255. Draws outside the shape defined by stencil buffer.
pub fn blend(self, blend: Blend) -> DrawState
[src][−]
Sets blending.
pub fn scissor(self, scissor: [u32; 4]) -> DrawState
[src][−]
Sets scissor [x, y, w, h]
.
Trait Implementations
impl Clone for DrawState
[src][+]
impl Copy for DrawState
[src]
impl Debug for DrawState
[src][+]
impl Default for DrawState
[src][+]
impl PartialEq<DrawState> for DrawState
[src][+]
impl PartialOrd<DrawState> for DrawState
[src][+]
impl StructuralPartialEq for DrawState
[src]
Auto Trait Implementations
impl RefUnwindSafe for DrawState
impl Send for DrawState
impl Sync for DrawState
impl Unpin for DrawState
impl UnwindSafe for DrawState
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,