|
|
|
@@ -298,6 +298,11 @@ extern Model* modelTestVCF; |
|
|
|
// cf |
|
|
|
#include "cf/src/plugin.hpp" |
|
|
|
|
|
|
|
// CVfunk |
|
|
|
#define modelSteps modelCVfunkSteps |
|
|
|
#include "CVfunk/src/plugin.hpp" |
|
|
|
#undef modelSteps |
|
|
|
|
|
|
|
// ChowDSP |
|
|
|
#include "ChowDSP/src/plugin.hpp" |
|
|
|
#define init initChowDSP |
|
|
|
@@ -859,6 +864,7 @@ Plugin* pluginInstance__BogaudioModules; |
|
|
|
Plugin* pluginInstance__CatroModulo; |
|
|
|
Plugin* pluginInstance__cf; |
|
|
|
Plugin* pluginInstance__ChowDSP; |
|
|
|
Plugin* pluginInstance__CVfunk; |
|
|
|
Plugin* pluginInstance__dBiz; |
|
|
|
Plugin* pluginInstance__DHE; |
|
|
|
extern Plugin* pluginInstance__DrumKit; |
|
|
|
@@ -1821,6 +1827,25 @@ static void initStatic__ChowDSP() |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
static void initStatic__CVfunk() |
|
|
|
{ |
|
|
|
Plugin* const p = new Plugin; |
|
|
|
pluginInstance__CVfunk = p; |
|
|
|
|
|
|
|
const StaticPluginLoader spl(p, "CVfunk"); |
|
|
|
if (spl.ok()) |
|
|
|
{ |
|
|
|
#define modelSteps modelCVfunkSteps |
|
|
|
p->addModel(modelSteps); |
|
|
|
p->addModel(modelEnvelopeArray); |
|
|
|
p->addModel(modelPentaSequencer); |
|
|
|
p->addModel(modelImpulseController); |
|
|
|
p->addModel(modelSignals); |
|
|
|
p->addModel(modelRanges); |
|
|
|
#undef modelSteps |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
static void initStatic__dBiz() |
|
|
|
{ |
|
|
|
Plugin* const p = new Plugin; |
|
|
|
@@ -3213,6 +3238,7 @@ void initStaticPlugins() |
|
|
|
initStatic__CatroModulo(); |
|
|
|
initStatic__cf(); |
|
|
|
initStatic__ChowDSP(); |
|
|
|
initStatic__CVfunk(); |
|
|
|
initStatic__dBiz(); |
|
|
|
initStatic__DHE(); |
|
|
|
initStatic__DrumKit(); |
|
|
|
|