mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-11 06:06:45 +01:00
wip: device: reenable lv2 support
This commit is contained in:
parent
bb325869c2
commit
6286d69824
18 changed files with 1533 additions and 393 deletions
16
crates/device/src/lv2.rs
Normal file
16
crates/device/src/lv2.rs
Normal 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,
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue