Just quickly show or draw a framebuffer in a window, nothing else!
Why use ufb:
- Uses hardware-acceleration via OpenGL.
- To quickly debug image or framebuffer output, instead of writing to files.
- Supports L8, La8, Rgb8 and Rgba8 &[u8]
buffers.
- Fast to build.
- Doesn't need vulkan drivers.
- Minimal interface.
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();
} ```