This library performs various blitting and drawing operations on a raw 32 bits framebuffer, whatever the encoding.
New in 0.4.0: - PNG decoding to RGBA (with stripped alpha) or 0RGB + error handling
Example:
```
// Framebuffer initialization
let mut pixels: Vec
// User bitmaps initialization let mut bitmaps = Vec::new(); bitmaps.push(Bitmap {w: 10, h: 10, x: 0, y: 0, pixels: &image::PIXELS});
while display loop with some display library { blitter_test(&mut fb, &mut bitmaps); your display lib display update function with buffer &fb.pixels }
// For testing : moves a 10x10 square and prints a 4x4 pixel at the center of the screen
fn blittertest(mut fb: &mut Framebuffer, bitmaps: &mut Vec
You can also view and run a (very basic) example using the minifb library in the 'examples' directory:
cargo run --example minifb --features="png-decode"
License: GPL-3.0