()
| 29 | static mut AUDIO_UNIT: Option<AudioUnitInstance> = None; |
| 30 | |
| 31 | fn engine() -> &'static mut EngineState { |
| 32 | unsafe { ENGINE.get_mut().expect("Engine not initialized") } |
| 33 | } |
| 34 | |
| 35 | /// Map macOS virtual key code to Bloom key code. |
| 36 | fn map_keycode(keycode: u16) -> usize { |
no test coverage detected