Go to file
2016-01-02 11:31:35 +01:00
examples Finally a visible window! 2015-12-19 11:44:36 +01:00
src WIP on Mac version 2015-12-19 14:47:34 +01:00
.gitignore Initial version 2015-11-22 18:55:38 +01:00
build.rs Started to work on Rust only version for Windows 2015-11-24 21:46:52 +01:00
Cargo.toml WIP on pure Rust version of the Mac backend 2015-12-04 20:35:35 +01:00
LICENSE Initial version 2015-11-22 18:55:38 +01:00
README.md Update README.md 2016-01-02 11:31:35 +01:00

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 and 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)

mac_screenshot