This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
Fundamental
mirror of
https://github.com/VCVRack/Fundamental.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
28
Wiki
Activity
Browse Source
Include correct dsp/ header file
tags/v0.4.0
Andrew Belt
7 years ago
parent
34c4fae343
commit
0f405270dd
5 changed files
with
8 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
src/ADSR.cpp
+3
-0
src/Delay.cpp
+1
-0
src/SEQ3.cpp
+1
-0
src/Scope.cpp
+2
-0
src/VCO.cpp
+ 1
- 0
src/ADSR.cpp
View File
@@ -1,4 +1,5 @@
#include "Fundamental.hpp"
#include "dsp/digital.hpp"
struct ADSR : Module {
+ 3
- 0
src/Delay.cpp
View File
@@ -1,4 +1,7 @@
#include "Fundamental.hpp"
#include "dsp/samplerate.hpp"
#include "dsp/ringbuffer.hpp"
#include "dsp/filter.hpp"
#define HISTORY_SIZE (1<<21)
+ 1
- 0
src/SEQ3.cpp
View File
@@ -1,4 +1,5 @@
#include "Fundamental.hpp"
#include "dsp/digital.hpp"
struct SEQ3 : Module {
+ 1
- 0
src/Scope.cpp
View File
@@ -1,5 +1,6 @@
#include <string.h>
#include "Fundamental.hpp"
#include "dsp/digital.hpp"
#define BUFFER_SIZE 512
+ 2
- 0
src/VCO.cpp
View File
@@ -1,4 +1,6 @@
#include "Fundamental.hpp"
#include "dsp/decimator.hpp"
#include "dsp/filter.hpp"
#define OVERSAMPLE 16
Write
Preview
Loading…
Cancel
Save