Trait blit::BlitExt [] [src]

pub trait BlitExt {
    fn as_blit_buffer(&self, mask_color: u32) -> BlitBuffer;
fn blit_with_mask_color(
        &self,
        buffer: &mut Vec<u32>,
        buffer_size: (usize, usize),
        pos: (i32, i32),
        mask_color: u32
    ); }

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

impl BlitExt for RgbImage
[src]

[src]

[src]

Implementors