Zrythm v2.0.0-DEV
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
dsp_context.h
1// SPDX-FileCopyrightText: © 2026 Alexandros Theodotou <alex@zrythm.org>
2// SPDX-License-Identifier: LicenseRef-ZrythmLicense
3
4#pragma once
5
6#include <juce_dsp/juce_dsp.h>
7
14class DspContextRAII
15{
16public:
17 DspContextRAII () noexcept [[clang::nonblocking]];
18 ~DspContextRAII () noexcept [[clang::nonblocking]];
19
20private:
21 juce::ScopedNoDenormals ctx_;
22};