feat: implement basic distortion

This commit is contained in:
Liam Kerr 2026-08-02 20:14:51 +01:00
parent 6ccb93615f
commit ce7844d7af
2 changed files with 49 additions and 14 deletions

View file

@ -9,6 +9,8 @@
#define DISTRHO_PLUGIN_NUM_INPUTS 2
#define DISTRHO_PLUGIN_NUM_OUTPUTS 2
#define DISTRHO_PLUGIN_NUM_PARAMETERS 1
#define DISTRHO_PLUGIN_WANT_PROGRAMS 0
#define DISTRHO_PLUGIN_WANT_STATE 0
@ -20,12 +22,4 @@
#define DISTRHO_PLUGIN_CLAP_ID "moe.liam.squidgesoft.SquidgeDistortion"
enum Parameters {
kGain,
kTone,
kVolume,
// add your parameters here
kParameterCount // must be last
};
#endif