1
0
Fork 0
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:
hogliux 2017-09-12 10:46:36 +01:00
parent 71d10e750a
commit e2c8e30d72
10 changed files with 73 additions and 5 deletions

View file

@ -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);