wip: init shared jack clients

This commit is contained in:
🪞👃🪞 2024-10-27 02:58:51 +03:00
parent 5a325666fd
commit ec2c96d00e
8 changed files with 74 additions and 35 deletions

View file

@ -0,0 +1,9 @@
use crate::*;
impl<E: Engine> Audio for Arranger<E> {
fn process (&mut self, client: &Client, scope: &ProcessScope) -> Control {
if let Some(ref transport) = self.transport {
transport.write().unwrap().process(client, scope);
}
todo!("arranger process")
}
}