Browse Source

Cleanup

tags/1.9.7
falkTX 9 years ago
parent
commit
d814b364fd
1 changed files with 0 additions and 12 deletions
  1. +0
    -12
      source/native-plugins/zynaddsubfx-synth.cpp

+ 0
- 12
source/native-plugins/zynaddsubfx-synth.cpp View File

@@ -286,7 +286,6 @@ public:
fMiddleWare(nullptr), fMiddleWare(nullptr),
fMaster(nullptr), fMaster(nullptr),
fSynth(), fSynth(),
fIsActive(false),
fMutex(), fMutex(),
fMiddleWareThread(new MiddleWareThread()) fMiddleWareThread(new MiddleWareThread())
{ {
@@ -633,16 +632,6 @@ protected:
// ------------------------------------------------------------------- // -------------------------------------------------------------------
// Plugin process calls // Plugin process calls


void activate() override
{
fIsActive = true;
}

void deactivate() override
{
fIsActive = false;
}

void process(float**, float** const outBuffer, const uint32_t frames, void process(float**, float** const outBuffer, const uint32_t frames,
const NativeMidiEvent* const midiEvents, const uint32_t midiEventCount) override const NativeMidiEvent* const midiEvents, const uint32_t midiEventCount) override
{ {
@@ -837,7 +826,6 @@ private:
SYNTH_T fSynth; SYNTH_T fSynth;
Config fConfig; Config fConfig;


bool fIsActive;
float fParameters[kParamCount]; float fParameters[kParamCount];


CarlaMutex fMutex; CarlaMutex fMutex;


Loading…
Cancel
Save