minifb 0.28.0

Cross-platform window setup with optional bitmap rendering
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[cfg(target_os = "macos")]
pub mod macos;
#[cfg(any(
    target_os = "linux",
    target_os = "freebsd",
    target_os = "dragonfly",
    target_os = "netbsd",
    target_os = "openbsd"
))]
pub mod posix;
#[cfg(target_os = "redox")]
pub mod redox;
#[cfg(target_arch = "wasm32")]
pub mod wasm;
#[cfg(target_os = "windows")]
pub mod windows;