mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-19 01:04:20 +00:00
AudioProcessorGraph: now calls its superclass in response to setNonRealtime
This commit is contained in:
parent
9f7eb07ce5
commit
5a43ea52e7
1 changed files with 2 additions and 0 deletions
|
|
@ -1410,6 +1410,8 @@ void AudioProcessorGraph::setNonRealtime (bool isProcessingNonRealtime) noexcept
|
|||
{
|
||||
const ScopedLock sl (getCallbackLock());
|
||||
|
||||
AudioProcessor::setNonRealtime (isProcessingNonRealtime);
|
||||
|
||||
for (int i = 0; i < nodes.size(); ++i)
|
||||
nodes.getUnchecked(i)->getProcessor()->setNonRealtime (isProcessingNonRealtime);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue