| 55 | } |
| 56 | |
| 57 | pub struct AudioSystem { |
| 58 | pub cx: FirewheelContext, |
| 59 | pub stream: CpalStream, |
| 60 | pub(crate) samples: Vec<ArcGc<dyn SampleResource + Send + Sync + 'static>>, |
| 61 | pub(crate) ir_samples: Vec<( |
| 62 | &'static str, |
| 63 | ArcGc<dyn SampleResourceF32 + Send + Sync + 'static>, |
| 64 | )>, |
| 65 | } |
| 66 | |
| 67 | const IR_SAMPLE_PATHS: [&str; 2] = [ |
| 68 | "assets/test_files/ir_outside.wav", |
nothing calls this directly
no outgoing calls
no test coverage detected