Suppress range checks of output in renderBlock
This commit is contained in:
parent
c2fbd61e81
commit
60cfd84ac5
1 changed files with 2 additions and 0 deletions
|
|
@ -715,10 +715,12 @@ void sfz::Synth::renderBlock(AudioSpan<float> buffer) noexcept
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if 0
|
||||||
ASSERT(!hasNanInf(buffer.getConstSpan(0)));
|
ASSERT(!hasNanInf(buffer.getConstSpan(0)));
|
||||||
ASSERT(!hasNanInf(buffer.getConstSpan(1)));
|
ASSERT(!hasNanInf(buffer.getConstSpan(1)));
|
||||||
ASSERT(isValidAudio(buffer.getConstSpan(0)));
|
ASSERT(isValidAudio(buffer.getConstSpan(0)));
|
||||||
ASSERT(isValidAudio(buffer.getConstSpan(1)));
|
ASSERT(isValidAudio(buffer.getConstSpan(1)));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void sfz::Synth::noteOn(int delay, int noteNumber, uint8_t velocity) noexcept
|
void sfz::Synth::noteOn(int delay, int noteNumber, uint8_t velocity) noexcept
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue