web-audio-api 0.28.0

A pure Rust implementation of the Web Audio API, for use in non-browser contexts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Primitives related to audio graph rendering

// private mods
pub(crate) mod graph;

// pub(crate) mods
mod thread;
pub(crate) use thread::*;

// public mods
mod processor;
pub use processor::*;
mod quantum;
pub use quantum::*;