Add AudibleInstruments
This commit is contained in:
parent
739359430a
commit
c1233ab66e
4 changed files with 151 additions and 0 deletions
|
|
@ -19,9 +19,11 @@
|
|||
|
||||
#include "DistrhoUtils.hpp"
|
||||
|
||||
#include "AudibleInstruments/src/plugin.hpp"
|
||||
#include "Befaco/src/plugin.hpp"
|
||||
#include "Fundamental/src/plugin.hpp"
|
||||
|
||||
Plugin* pluginInstance__AudibleInstruments;
|
||||
Plugin* pluginInstance__Befaco;
|
||||
Plugin* pluginInstance__Fundamental;
|
||||
|
||||
|
|
@ -75,6 +77,37 @@ struct StaticPluginLoader {
|
|||
}
|
||||
};
|
||||
|
||||
static void initStatic__AudibleInstruments()
|
||||
{
|
||||
Plugin* p = new Plugin;
|
||||
pluginInstance__AudibleInstruments = p;
|
||||
|
||||
const StaticPluginLoader spl(p, "AudibleInstruments");
|
||||
if (spl.ok())
|
||||
{
|
||||
p->addModel(modelBraids);
|
||||
p->addModel(modelPlaits);
|
||||
p->addModel(modelElements);
|
||||
p->addModel(modelTides);
|
||||
p->addModel(modelTides2);
|
||||
p->addModel(modelClouds);
|
||||
p->addModel(modelWarps);
|
||||
p->addModel(modelRings);
|
||||
p->addModel(modelLinks);
|
||||
p->addModel(modelKinks);
|
||||
p->addModel(modelShades);
|
||||
p->addModel(modelBranches);
|
||||
p->addModel(modelBlinds);
|
||||
p->addModel(modelVeils);
|
||||
p->addModel(modelFrames);
|
||||
p->addModel(modelMarbles);
|
||||
p->addModel(modelStages);
|
||||
p->addModel(modelRipples);
|
||||
p->addModel(modelShelves);
|
||||
p->addModel(modelStreams);
|
||||
}
|
||||
}
|
||||
|
||||
static void initStatic__Befaco()
|
||||
{
|
||||
Plugin* p = new Plugin;
|
||||
|
|
@ -133,6 +166,7 @@ static void initStatic__Fundamental()
|
|||
|
||||
void initStaticPlugins()
|
||||
{
|
||||
initStatic__AudibleInstruments();
|
||||
initStatic__Befaco();
|
||||
initStatic__Fundamental();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue