mirror of
https://github.com/italicsjenga/rust_minifb.git
synced 2024-12-24 03:41:29 +11:00
24 lines
582 B
Rust
24 lines
582 B
Rust
|
use minifb::{Key, ScaleMode, Window, WindowOptions};
|
||
|
|
||
|
fn main() {
|
||
|
// Allocate the output buffer.
|
||
|
let buf = vec![0x00FFFF00; 320 * 480];
|
||
|
|
||
|
let mut window = Window::new(
|
||
|
"Press ESC to exit",
|
||
|
320,
|
||
|
480,
|
||
|
WindowOptions {
|
||
|
resize: true,
|
||
|
scale_mode: ScaleMode::Center,
|
||
|
topmost: true,
|
||
|
..WindowOptions::default()
|
||
|
},
|
||
|
)
|
||
|
.expect("Unable to open Window");
|
||
|
|
||
|
while window.is_open() && !window.is_key_down(Key::Escape) {
|
||
|
window.update_with_buffer(&buf, 320, 480).unwrap();
|
||
|
}
|
||
|
}
|