Just quickly show or draw a framebuffer in a window, nothing else!
toml
[dependencies]
ufb = "*"
```rust use ufb::{ColorDepth, Window};
const WIDTH: u32 = 768; const HEIGHT: u32 = 768;
fn main() {
let mut fb: Vec
let mut win = Window::new(WIDTH, HEIGHT, "Hello").unwrap();
win.show(&fb, ColorDepth::Rgb8).unwrap();
} ```
Using the image crate: ```rust use ufb::{ColorDepth, Window}; use image::GenericImageView;
fn main() { let img = image::open("screenshots/image.jpg").unwrap(); let (w, h) = img.dimensions();
let mut win = Window::new(w, h, "Hello").unwrap();
win.show(&img.to_rgba8(), ColorDepth::Rgba8).unwrap();
} ```