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

Function ParametersToString

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

Source from the content-addressed store, hash-verified

99}
100
101wxString ParametersToString(const std::map<Steinberg::Vst::ParamID, Steinberg::Vst::ParamValue>& params)
102{
103 wxString result;
104 for(auto& p : params)
105 result.Append(wxString::Format(
106 "%lu=%f;", static_cast<unsigned long>(p.first), p.second));
107 return result;
108}
109
110VST3EffectSettings& GetSettings(EffectSettings& settings)
111{

Callers 2

SaveSettingsMethod · 0.85
SaveUserPresetMethod · 0.85

Calls 1

AppendMethod · 0.45

Tested by

no test coverage detected