Merge pull request #761 from zonkmachine/random-wave-2

Random wave for instrument plugin LFO
This commit is contained in:
Tobias Doerffel
2014-05-26 10:26:09 +02:00
6 changed files with 31 additions and 5 deletions

View File

@@ -157,6 +157,7 @@ private:
float m_lfoAmount;
bool m_lfoAmountIsZero;
sample_t * m_lfoShapeData;
sample_t m_random;
bool m_bad_lfoShapeData;
SampleBuffer m_userWave;
@@ -167,6 +168,7 @@ private:
SawWave,
SquareWave,
UserDefinedWave,
RandomWave,
NumLfoShapes
} ;
@@ -174,7 +176,6 @@ private:
void updateLfoShapeData();
friend class EnvelopeAndLfoView;
friend class FlpImport;

View File

@@ -90,7 +90,8 @@ private:
ledCheckBox * m_x100Cb;
ledCheckBox * m_controlEnvAmountCb;
float m_randomGraph;
} ;
#endif