add split/index decls to Amp, RFlanger
This commit is contained in:
parent
eb18d01cdd
commit
6497fc1dd8
1 changed files with 4 additions and 2 deletions
|
@ -151,15 +151,17 @@ pub const NewCommand = struct {
|
||||||
|
|
||||||
pub const Amp = struct {
|
pub const Amp = struct {
|
||||||
pub const base_tag = Tag.amp;
|
pub const base_tag = Tag.amp;
|
||||||
pub const base_type = Type.lv2_command;
|
|
||||||
base: NewCommand,
|
base: NewCommand,
|
||||||
|
split: usize,
|
||||||
|
index: usize,
|
||||||
gain: f32
|
gain: f32
|
||||||
};
|
};
|
||||||
|
|
||||||
pub const RFlanger = struct {
|
pub const RFlanger = struct {
|
||||||
pub const base_tag = Tag.rflanger;
|
pub const base_tag = Tag.rflanger;
|
||||||
pub const base_type = Type.lv2_command;
|
|
||||||
base: NewCommand,
|
base: NewCommand,
|
||||||
|
split: usize,
|
||||||
|
index: usize,
|
||||||
delay_depth_avg: f32,
|
delay_depth_avg: f32,
|
||||||
law_freq: f32,
|
law_freq: f32,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue