mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-09 21:26:43 +01:00
wip: init shared jack clients
This commit is contained in:
parent
5a325666fd
commit
ec2c96d00e
8 changed files with 74 additions and 35 deletions
9
crates/tek_sequencer/src/arranger_snd.rs
Normal file
9
crates/tek_sequencer/src/arranger_snd.rs
Normal 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")
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue