diff options
author | gramanas <anastasis.gramm2@gmail.com> | 2023-11-27 18:33:42 +0200 |
---|---|---|
committer | gramanas <anastasis.gramm2@gmail.com> | 2023-11-27 18:33:42 +0200 |
commit | 4f7de09c753ece6f2099512522d489b0104a59a8 (patch) | |
tree | b9983c044bee6f553b90b914bf63ee5c1aa2aaf0 /src/synth_engine.h | |
parent | b0128e30840dff1e7db7bcfd69e6fa4f09ed5fbe (diff) | |
download | synth-project-4f7de09c753ece6f2099512522d489b0104a59a8.tar.gz synth-project-4f7de09c753ece6f2099512522d489b0104a59a8.tar.bz2 synth-project-4f7de09c753ece6f2099512522d489b0104a59a8.zip |
cc adsr and ui
Diffstat (limited to 'src/synth_engine.h')
-rw-r--r-- | src/synth_engine.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/synth_engine.h b/src/synth_engine.h index 34f90b2..674c287 100644 --- a/src/synth_engine.h +++ b/src/synth_engine.h @@ -44,6 +44,7 @@ typedef struct { int spectrum_enabled; int wave_enabled; int adsr_enabled; + int adsr_graph_enabled; int osc_enabled; int freeze; int rate_divider; @@ -66,6 +67,8 @@ typedef struct { typedef struct { PaStream *stream; + int wvt_pos; + cc_t * ccs[128]; int cci; |