neser 0.3.0

NESER - NES Emulator in Rust. Desktop (SDL) and WebAssembly frontends.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Rust-native frontend using winit + glutin + glow.
//!
//! Replaces the SDL2 frontend with pure-Rust crates for windowing,
//! OpenGL context management, and input handling.

mod app_state;
mod audio;
mod event_loop;
pub(crate) mod gamepad;
mod gl_wrapper;
pub mod keyboard;
mod mouse;
mod render_target;
mod sleep_inhibitor;

pub use audio::NativeAudio;
pub use event_loop::NativeEventLoop;