Trait blit::BlitExt

source ·
pub trait BlitExt {
    fn to_blit_buffer(&self, mask_color: Color) -> BlitBuffer;
    fn blit(
        &self,
        dst: &mut [u32],
        dst_width: usize,
        offset: (i32, i32),
        mask_color: Color
    ); }
Expand description

A trait adding blitting functions to image types.

Required Methods§

Convert the image to a custom BlitBuffer type which is optimized for applying the blitting operations.

Blit the image directly on a buffer.

Implementations on Foreign Types§

Implementors§