rynorris / nes

NES emulator written in Rust
MIT License
11 stars 0 forks source link

Emulate NTSC signal artifacts #29

Open rynorris opened 5 years ago

rynorris commented 5 years ago

Probably have to add an NTSC encoder + decoder to make this look authentic. Encode into 8 samples per pixel, and decode using 12.

See: https://wiki.nesdev.com/w/index.php/NTSC_video

rynorris commented 5 years ago

Currently thinking about adding a Vulkan rendering front-end and implementing the NTSC artifacts as a shader. This should give us excellent performance. And I get to learn Vulkan.