zig fmt pass
This commit is contained in:
parent
2acb45fdca
commit
667e6cbdac
1 changed files with 5 additions and 15 deletions
20
src/lang.zig
20
src/lang.zig
|
@ -199,33 +199,25 @@ pub const Command = struct {
|
|||
pub const Amp = LV2Command(
|
||||
.amp,
|
||||
"http://lv2plug.in/plugins/eg-amp",
|
||||
struct {
|
||||
gain: f32
|
||||
},
|
||||
struct { gain: f32 },
|
||||
);
|
||||
|
||||
pub const RFlanger = LV2Command(
|
||||
.rflanger,
|
||||
"http://plugin.org.uk/swh-plugins/retroFlange",
|
||||
struct {
|
||||
delay_depth_avg: f32, law_freq: f32
|
||||
},
|
||||
struct { delay_depth_avg: f32, law_freq: f32 },
|
||||
);
|
||||
|
||||
pub const Eq = LV2Command(
|
||||
.rflanger,
|
||||
"http://plugin.org.uk/swh-plugins/dj_eq_mono",
|
||||
struct {
|
||||
lo: f32, mid: f32, hi: f32
|
||||
},
|
||||
struct { lo: f32, mid: f32, hi: f32 },
|
||||
);
|
||||
|
||||
pub const Phaser = LV2Command(
|
||||
.phaser,
|
||||
"http://plugin.org.uk/swh-plugins/lfoPhaser",
|
||||
struct {
|
||||
lfo_rate: f32, lfo_depth: f32, fb: f32, spread: f32
|
||||
},
|
||||
struct { lfo_rate: f32, lfo_depth: f32, fb: f32, spread: f32 },
|
||||
);
|
||||
|
||||
pub const Mbeq = LV2Command(
|
||||
|
@ -378,9 +370,7 @@ pub const Command = struct {
|
|||
pub const Foverdrive = LV2Command(.foverdrive, "http://plugin.org.uk/swh-plugins/foverdrive", struct {
|
||||
drive: f32,
|
||||
});
|
||||
pub const Thruzero = LV2Command(.thruzero, "http://drobilla.net/plugins/mda/ThruZero", struct {
|
||||
rate: f32, mix: f32, feedback: f32, depth_mod: f32
|
||||
});
|
||||
pub const Thruzero = LV2Command(.thruzero, "http://drobilla.net/plugins/mda/ThruZero", struct { rate: f32, mix: f32, feedback: f32, depth_mod: f32 });
|
||||
|
||||
pub const Gverb = LV2Command(.gverb, "http://plugin.org.uk/swh-plugins/gverb", struct {
|
||||
roomsize: f32,
|
||||
|
|
Loading…
Reference in a new issue