mirror of
https://github.com/italicsjenga/rust_minifb.git
synced 2024-12-24 03:41:29 +11:00
1.1 KiB
1.1 KiB
rust_minifb
rust_minifb (Mini FrameBuffer) is a small cross platform library written in Rust and that makes it easy to render (32-bit) pixels in a window. An example is the best way to show how it works:
extern crate minifb;
const WIDTH: usize = 1280;
const HEIGHT: usize = 720;
fn main() {
let mut buffer: [u32; WIDTH * HEIGHT] = [0; WIDTH * HEIGHT];
if !(minifb::open("TestWindow", WIDTH, HEIGHT)) {
return;
}
while minifb::update(&buffer) {
for i in buffer.iter_mut() {
*i = ... // write something here
}
}
minifb::close();
}
Status
Currently Mac, Windows has been Linux has been tested which are the supported platforms for now.
Build instructions
cargo build
cargo run --example noise
This will run the noise example which should look something like this (Mac screenshot)