| 657 | } |
| 658 | |
| 659 | void AudioNode::unsilenceOutputs(ContextRenderLock & r) |
| 660 | { |
| 661 | for (auto out : m_outputs) |
| 662 | { |
| 663 | out->bus(r)->clearSilentFlag(); |
| 664 | } |
| 665 | } |
| 666 | |
| 667 | std::shared_ptr<AudioParam> AudioNode::param(char const * const str) |
| 668 | { |
nothing calls this directly
no test coverage detected