(output: &mut [f32])
| 1411 | /// Called by JS Web Audio ScriptProcessorNode/AudioWorklet each audio frame. |
| 1412 | #[wasm_bindgen] |
| 1413 | pub fn bloom_audio_mix(output: &mut [f32]) { |
| 1414 | engine().audio.mix_output(output); |
| 1415 | } |
| 1416 | |
| 1417 | #[wasm_bindgen] |
| 1418 | pub fn bloom_play_music(handle: f64) { |
nothing calls this directly
no test coverage detected