draw ports; fix process callback

This commit is contained in:
🪞👃🪞 2024-06-22 20:05:48 +03:00
parent 72ead536be
commit 9e550a73ae
8 changed files with 268 additions and 175 deletions

View file

@ -119,3 +119,12 @@ pub fn handle (s: &mut Plugin, event: &AppEvent) -> Usually<bool> {
}]
}))
}
impl DevicePorts for Plugin {
fn midi_ins (&self) -> Usually<Vec<String>> {
Ok(vec!["in".into()])
}
fn audio_outs (&self) -> Usually<Vec<String>> {
Ok(vec!["out L".into(), "out R".into()])
}
}