Struct tiny_skia::scan::hairline_aa::RectClipBlitter

source ·
struct RectClipBlitter<'a> {
    blitter: &'a mut dyn Blitter,
    clip: ScreenIntRect,
}

Fields§

§blitter: &'a mut dyn Blitter§clip: ScreenIntRect

Trait Implementations§

source§

impl Blitter for RectClipBlitter<'_>

source§

fn blit_anti_h( &mut self, x: u32, y: u32, antialias: &mut [u8], runs: &mut [Option<NonZeroU16>], )

Blits a horizontal run of antialiased pixels. Read more
source§

fn blit_v(&mut self, x: u32, y: u32, height: NonZeroU32, alpha: u8)

Blits a vertical run of pixels with a constant alpha value.
source§

fn blit_anti_h2(&mut self, x: u32, y: u32, alpha0: u8, alpha1: u8)

source§

fn blit_anti_v2(&mut self, x: u32, y: u32, alpha0: u8, alpha1: u8)

source§

fn blit_h(&mut self, _x: u32, _y: u32, _width: NonZeroU32)

Blits a horizontal run of one or more pixels.
source§

fn blit_rect(&mut self, _rect: &ScreenIntRect)

Blits a solid rectangle one or more pixels wide.
source§

fn blit_mask(&mut self, _mask: &Mask, _clip: &ScreenIntRect)

Blits a pattern of pixels defined by a rectangle-clipped mask.

Auto Trait Implementations§

§

impl<'a> Freeze for RectClipBlitter<'a>

§

impl<'a> !RefUnwindSafe for RectClipBlitter<'a>

§

impl<'a> !Send for RectClipBlitter<'a>

§

impl<'a> !Sync for RectClipBlitter<'a>

§

impl<'a> Unpin for RectClipBlitter<'a>

§

impl<'a> !UnwindSafe for RectClipBlitter<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.