DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit 081d4d7392ef587f46dc3b216369655828bbda7f
parent cd1861ae893c21045e9f47245bf41cabca7d5f2f
Author: falkTX <falktx@falktx.com>
Date:   Thu, 12 May 2022 09:41:52 +0100

Tell vst2 hosts that offline rendering APIs are not supported

Diffstat:
Mdistrho/src/DistrhoPluginVST2.cpp | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/distrho/src/DistrhoPluginVST2.cpp b/distrho/src/DistrhoPluginVST2.cpp @@ -1019,6 +1019,8 @@ public: #else return -1; #endif + if (std::strcmp(canDo, "offline") == 0) + return -1; } break;