rgrit 0.1.1

A Rust interface to grit - the GBA Image Transmogrifier with batteries included!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use rgrit::StaticBitmap;

const BACKGROUND: StaticBitmap = rgrit::grit! {
    "assets/test.png",
    transparency = Disabled,
    bit_depth = 16,
    format = Bitmap,
};

fn main() {
    dbg!(&BACKGROUND);
}