mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-15 00:24:19 +00:00
Added a ScopedNoDenormal class to temporarily disable denormals
This commit is contained in:
parent
71d10e750a
commit
e2c8e30d72
10 changed files with 73 additions and 5 deletions
|
|
@ -114,6 +114,8 @@ void DspModulePluginDemoAudioProcessor::releaseResources()
|
|||
|
||||
void DspModulePluginDemoAudioProcessor::process (dsp::ProcessContextReplacing<float> context) noexcept
|
||||
{
|
||||
ScopedNoDenormals noDenormals;
|
||||
|
||||
// Input volume applied with a LinearSmoothedValue
|
||||
inputVolume.process (context);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue