summaryrefslogtreecommitdiff
path: root/synth/note.h
diff options
context:
space:
mode:
authorFlorian Jung <florian.a.jung@web.de>2012-04-11 16:36:45 +0200
committerFlorian Jung <florian.a.jung@web.de>2012-04-11 16:36:45 +0200
commit7c875a14b73d844f4f3b8390e4463610262d9415 (patch)
tree915e0023706f3f5a3a81c1707415989dde472bad /synth/note.h
parentaec14a264cdb19ccbd9e53596c58da9b60308909 (diff)
added FM-list (brings between 0% and 15% performance improvement)
cast-optimisation programs gets a better operator= commented out segfaulting cleanup()
Diffstat (limited to 'synth/note.h')
-rw-r--r--synth/note.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/synth/note.h b/synth/note.h
index 7181f6d..379f2b1 100644
--- a/synth/note.h
+++ b/synth/note.h
@@ -3,6 +3,8 @@
#include <jack/jack.h>
+#include <list>
+
#include "programs.h"
#include "envelope.h"
#include "fixed.h"
@@ -43,6 +45,7 @@ class Note : public NoteSkel
fixed_t *old_oscval;
int n_oscillators;
oscillator_t *oscillator;
+ std::list<int>* fm_oscs;
fixed_t sync_factor;
fixed_t sync_phase;