mirror of
https://github.com/italicsjenga/mini_gl_fb.git
synced 2024-11-23 07:51:31 +11:00
02b3b62520
Upgrades glutin, docs, and adds a few other features (including multi window support). But not the readme. That comes next.
9 lines
258 B
Rust
9 lines
258 B
Rust
extern crate mini_gl_fb;
|
|
|
|
fn main() {
|
|
let (mut event_loop, mut fb) = mini_gl_fb::gotta_go_fast("Hello world!", 800.0, 600.0);
|
|
let buffer = vec![[128u8, 0, 0, 255]; 800 * 600];
|
|
fb.update_buffer(&buffer);
|
|
fb.persist(&mut event_loop);
|
|
}
|