diff options
author | gramanas <anastasis.gramm2@gmail.com> | 2023-11-21 14:07:33 +0200 |
---|---|---|
committer | gramanas <anastasis.gramm2@gmail.com> | 2023-11-21 14:07:33 +0200 |
commit | c03d395f6848fe9b2d1185173a9cf5ec8277394f (patch) | |
tree | 2dad9fe79a189096b713559e35cf49497fea817a /src/synth_engine.h | |
parent | a7c39399e3ec051f210d9e991fe0112d0f988817 (diff) | |
download | synth-project-c03d395f6848fe9b2d1185173a9cf5ec8277394f.tar.gz synth-project-c03d395f6848fe9b2d1185173a9cf5ec8277394f.tar.bz2 synth-project-c03d395f6848fe9b2d1185173a9cf5ec8277394f.zip |
Crappy fft for spectrum analysis and initial gtk test
Diffstat (limited to 'src/synth_engine.h')
-rw-r--r-- | src/synth_engine.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/synth_engine.h b/src/synth_engine.h index aee38d9..da15fe2 100644 --- a/src/synth_engine.h +++ b/src/synth_engine.h @@ -15,7 +15,7 @@ #ifndef M_PI -#define M_PI (3.14159265) +#define M_PI (3.14159265) #endif typedef struct lfo_t { @@ -90,6 +90,7 @@ typedef struct { int active; viz_t viz; + viz_t fftviz; osc_t * osctri; } synth_t; |