mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-09 05:06: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
|
|
@ -1,4 +1,13 @@
|
|||
use crate::*;
|
||||
impl<E: Engine> Audio for Sequencer<E> {
|
||||
fn process (&mut self, client: &Client, scope: &ProcessScope) -> Control {
|
||||
if let Some(ref transport) = self.transport {
|
||||
transport.write().unwrap().process(client, scope);
|
||||
}
|
||||
todo!("sequencer process")
|
||||
}
|
||||
}
|
||||
|
||||
impl Phrase {
|
||||
/// Write a chunk of MIDI events to an output port.
|
||||
pub fn process_out (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue