From 37a2d8671466aa379d7ceaf2aa2ce69ac57d9334 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Mon, 30 May 2022 15:30:41 +0200 Subject: [PATCH] Add TODO on also supporting hard realtime for VST3 --- src/plugin.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/plugin.rs b/src/plugin.rs index e41dd257..ed62f31d 100644 --- a/src/plugin.rs +++ b/src/plugin.rs @@ -206,6 +206,8 @@ pub trait ClapPlugin: Plugin { /// If this is set to true, then the plugin will report itself as having a hard realtime /// processing requirement when the host asks for it. Supported hosts will never ask the plugin /// to do offline processing. + // TODO: Supposedly VST3 also has something similar if you add an `|OnlyRT` category. We should + // move this to the Plugin trait and use that for VST3 const CLAP_HARD_REALTIME: bool = false; }