wip: device: reenable lv2 support

This commit is contained in:
🪞👃🪞 2025-05-04 18:12:16 +03:00
parent bb325869c2
commit 6286d69824
18 changed files with 1533 additions and 393 deletions

View file

@ -411,7 +411,7 @@ impl Tek {
pub(crate) fn device_add (&mut self, index: usize) -> Usually<()> {
match index {
0 => self.device_add_sampler(),
1 => self.device_add_plugin(),
1 => self.device_add_lv2(),
_ => unreachable!(),
}
}
@ -436,7 +436,7 @@ impl Tek {
Ok(())
}
fn device_add_plugin (&mut self) -> Usually<()> {
fn device_add_lv2 (&mut self) -> Usually<()> {
todo!();
Ok(())
}