MCPcopy Create free account
hub / github.com/audacity/audacity / GetCache

Function GetCache

libraries/lib-vst3/VST3Wrapper.cpp:41–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39std::map<std::string, VST3PluginCache> sVST3PluginCache;
40
41VST3PluginCache* GetCache(const VST3::UID& effectUid)
42{
43 const auto key = effectUid.toString();
44 auto it = sVST3PluginCache.find(key);
45 if(it != sVST3PluginCache.end())
46 return &it->second;
47 return nullptr;
48}
49
50VST3PluginCache& CreateCache(const VST3::UID& effectUid)
51{

Callers 5

VST3WrapperMethod · 0.85
InitializeComponentsMethod · 0.85
FetchSettingsMethod · 0.85
LoadPresetMethod · 0.85
FindFactoryPresetsMethod · 0.85

Calls 3

toStringMethod · 0.45
findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected