Use comptime for fully declarative LV2 and Custom commands #14

Merged
luna merged 69 commits from declarative-commands into master 2020-06-02 21:37:47 +00:00
1 changed files with 4 additions and 2 deletions
Showing only changes of commit 6497fc1dd8 - Show all commits

View File

@ -151,15 +151,17 @@ pub const NewCommand = struct {
pub const Amp = struct {
pub const base_tag = Tag.amp;
pub const base_type = Type.lv2_command;
base: NewCommand,
split: usize,
index: usize,
gain: f32
};
pub const RFlanger = struct {
pub const base_tag = Tag.rflanger;
pub const base_type = Type.lv2_command;
base: NewCommand,
split: usize,
index: usize,
delay_depth_avg: f32,
law_freq: f32,
};