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

16
crates/device/src/lv2.rs Normal file
View file

@ -0,0 +1,16 @@
mod lv2_model; pub use self::lv2_model::*;
mod lv2_audio; pub use self::lv2_audio::*;
mod lv2_gui; pub use self::lv2_gui::*;
mod lv2_tui; pub use self::lv2_tui::*;
pub(self) use std::thread::JoinHandle;
pub(self) use ::livi::{
World,
Instance,
Plugin as LiviPlugin,
Features,
FeaturesBuilder,
Port as LiviPort,
event::LV2AtomSequence,
};