clean up a bit
This commit is contained in:
parent
39f0c79484
commit
fbdbc998b9
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
BarrVerb reverb plugin
|
Chassis polysynth framework
|
||||||
|
|
||||||
Copyright 2024 Gordon JC Pearce <gordonjcp@gjcp.net>
|
Copyright 2024 Gordon JC Pearce <gordonjcp@gjcp.net>
|
||||||
|
|
||||||
@ -16,7 +16,6 @@
|
|||||||
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
#ifndef DISTRHO_PLUGIN_INFO_H
|
#ifndef DISTRHO_PLUGIN_INFO_H
|
||||||
#define DISTRHO_PLUGIN_INFO_H
|
#define DISTRHO_PLUGIN_INFO_H
|
||||||
|
|
||||||
@ -30,7 +29,6 @@
|
|||||||
|
|
||||||
#define DISTRHO_PLUGIN_WANT_PROGRAMS 0
|
#define DISTRHO_PLUGIN_WANT_PROGRAMS 0
|
||||||
|
|
||||||
|
|
||||||
enum Parameters {
|
enum Parameters {
|
||||||
paramProg,
|
paramProg,
|
||||||
kParameterCount
|
kParameterCount
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
###############################
|
###############################
|
||||||
#
|
#
|
||||||
# Makefile for BarrChassis
|
# Makefile for Chassis
|
||||||
# based on the work of falkTX, in the DPF example plugins
|
# based on the work of falkTX, in the DPF example plugins
|
||||||
#
|
#
|
||||||
# for full licence, see LICENCE in the root of the project
|
# for full licence, see LICENCE in the root of the project
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Chassis softsynth framework
|
Chassis polysynth framework
|
||||||
|
|
||||||
Copyright 2024 Gordon JC Pearce <gordonjcp@gjcp.net>
|
Copyright 2024 Gordon JC Pearce <gordonjcp@gjcp.net>
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Chassis softsynth framework
|
Chassis polysynth framework
|
||||||
|
|
||||||
Copyright 2024 Gordon JC Pearce <gordonjcp@gjcp.net>
|
Copyright 2024 Gordon JC Pearce <gordonjcp@gjcp.net>
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Chassis softsynth framework
|
Chassis polysynth framework
|
||||||
|
|
||||||
Copyright 2024 Gordon JC Pearce <gordonjcp@gjcp.net>
|
Copyright 2024 Gordon JC Pearce <gordonjcp@gjcp.net>
|
||||||
|
|
||||||
@ -16,10 +16,9 @@
|
|||||||
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <math.h>
|
|
||||||
|
|
||||||
#include "voice.hpp"
|
#include "voice.hpp"
|
||||||
|
|
||||||
|
#include <math.h>
|
||||||
|
|
||||||
static float blep(float phase, float theta) {
|
static float blep(float phase, float theta) {
|
||||||
float t;
|
float t;
|
||||||
@ -36,8 +35,6 @@ static float blep(float phase, float theta) {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
bool Voice::isFree() {
|
bool Voice::isFree() {
|
||||||
return keyState == K_OFF;
|
return keyState == K_OFF;
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Chassis softsynth framework
|
Chassis polysynth framework
|
||||||
|
|
||||||
Copyright 2024 Gordon JC Pearce <gordonjcp@gjcp.net>
|
Copyright 2024 Gordon JC Pearce <gordonjcp@gjcp.net>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user