Struct tiny_skia::scan::path_aa::SuperBlitter

source ·
struct SuperBlitter<'a> {
    base: BaseSuperBlitter<'a>,
    runs: AlphaRuns,
    offset_x: usize,
}

Fields§

§base: BaseSuperBlitter<'a>§runs: AlphaRuns§offset_x: usize

Implementations§

source§

impl<'a> SuperBlitter<'a>

source

fn new( bounds: &IntRect, clip_rect: &ScreenIntRect, blitter: &'a mut dyn Blitter, ) -> Option<Self>

source

fn flush(&mut self)

Once runs contains a complete supersampled row, flush() blits it out through the wrapped blitter.

Trait Implementations§

source§

impl Blitter for SuperBlitter<'_>

source§

fn blit_h(&mut self, x: u32, y: u32, width: NonZeroU32)

Blits a row of pixels, with location and width specified in supersampled coordinates.

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_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.
source§

impl Drop for SuperBlitter<'_>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for SuperBlitter<'a>

§

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

§

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

§

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

§

impl<'a> Unpin for SuperBlitter<'a>

§

impl<'a> !UnwindSafe for SuperBlitter<'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.