Convert the rest of the host modules for zero latency behaviour
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
0000456cf5
commit
deeecfd3ab
10 changed files with 105 additions and 29 deletions
|
|
@ -511,6 +511,9 @@ extern Model* modelMaude_221;
|
|||
|
||||
#endif // NOPLUGINS
|
||||
|
||||
// known terminal modules
|
||||
std::vector<Model*> hostTerminalModels;
|
||||
|
||||
// stuff that reads config files, we dont want that
|
||||
int loadConsoleType() { return 0; }
|
||||
int loadDirectOutMode() { return 0; }
|
||||
|
|
@ -571,7 +574,6 @@ std::string pluginManifest(const std::string& dirname);
|
|||
std::string pluginPath(const std::string& dirname);
|
||||
}
|
||||
|
||||
// regular plugins
|
||||
namespace plugin {
|
||||
|
||||
struct StaticPluginLoader {
|
||||
|
|
@ -689,6 +691,18 @@ static void initStatic__Cardinal()
|
|||
#else
|
||||
spl.removeModule("MPV");
|
||||
#endif
|
||||
|
||||
hostTerminalModels = {
|
||||
modelHostAudio2,
|
||||
modelHostAudio8,
|
||||
modelHostCV,
|
||||
modelHostMIDI,
|
||||
modelHostMIDICC,
|
||||
modelHostMIDIGate,
|
||||
modelHostMIDIMap,
|
||||
modelHostParameters,
|
||||
modelHostTime,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue