MCPcopy Create free account
hub / github.com/LabSound/LabSound / removeParam

Method removeParam

src/core/AudioNodeOutput.cpp:198–206  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

196}
197
198void AudioNodeOutput::removeParam(ContextGraphLock & g, std::shared_ptr<AudioParam> param)
199{
200 if (!param)
201 return;
202
203 auto it = m_params.find(param);
204 if (it != m_params.end())
205 m_params.erase(it);
206}
207
208void AudioNodeOutput::disconnectAllParams(ContextGraphLock & g, std::shared_ptr<AudioNodeOutput> self)
209{

Callers 2

disconnectMethod · 0.80
disconnectAllMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected