From ca461d3d15b9b4de5d0a4a61733faeb694ead686 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Thu, 3 Mar 2022 22:27:48 +0100 Subject: [PATCH] Touch up list of missing features --- src/plugin.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/plugin.rs b/src/plugin.rs index 3e79966b..5995a059 100644 --- a/src/plugin.rs +++ b/src/plugin.rs @@ -20,10 +20,12 @@ use crate::param::internals::Params; /// - Sample accurate automation (this would be great, but sadly few hosts even support it so until /// they do we'll ignore that it's a thing) /// - Parameter hierarchies/groups -/// - Bypass parameters, right now the VST3 wrapper generates one for you +/// - Bypass parameters, right now the plugin wrappers generates one for you but there's no way to +/// interact with it yet /// - Outputting parameter changes from the plugin /// - MIDI CC handling -/// - Outputting MIDI events +/// - Outputting MIDI events from the process function (you can output parmaeter changes from an +/// editor GUI) #[allow(unused_variables)] pub trait Plugin: Default + Send + Sync + 'static { const NAME: &'static str;