From 8db35aaf9d9e7466f039040d40852981975e94ba Mon Sep 17 00:00:00 2001
From: Robbert van der Helm <mail@robbertvanderhelm.nl>
Date: Fri, 8 Apr 2022 20:59:46 +0200
Subject: [PATCH] Remove notes about VST3 support for events

---
 src/midi.rs | 34 ----------------------------------
 1 file changed, 34 deletions(-)

diff --git a/src/midi.rs b/src/midi.rs
index d7b08da0..cc6e6445 100644
--- a/src/midi.rs
+++ b/src/midi.rs
@@ -59,10 +59,6 @@ pub enum NoteEvent {
     },
     /// A volume expression event, available on [`MidiConfig::Basic`] and up. Not all hosts may
     /// support these expressions.
-    ///
-    /// # Note
-    ///
-    /// Currently not yet supported for VST3 plugins.
     Volume {
         timing: u32,
         /// The note's channel, from 0 to 16.
@@ -74,10 +70,6 @@ pub enum NoteEvent {
     },
     /// A panning expression event, available on [`MidiConfig::Basic`] and up. Not all hosts may
     /// support these expressions.
-    ///
-    /// # Note
-    ///
-    /// Currently not yet supported for VST3 plugins.
     Pan {
         timing: u32,
         /// The note's channel, from 0 to 16.
@@ -90,10 +82,6 @@ pub enum NoteEvent {
     },
     /// A tuning expression event, available on [`MidiConfig::Basic`] and up. Not all hosts may support
     /// these expressions.
-    ///
-    /// # Note
-    ///
-    /// Currently not yet supported for VST3 plugins.
     Tuning {
         timing: u32,
         /// The note's channel, from 0 to 16.
@@ -105,10 +93,6 @@ pub enum NoteEvent {
     },
     /// A vibrato expression event, available on [`MidiConfig::Basic`] and up. Not all hosts may support
     /// these expressions.
-    ///
-    /// # Note
-    ///
-    /// Currently not yet supported for VST3 plugins.
     Vibrato {
         timing: u32,
         /// The note's channel, from 0 to 16.
@@ -120,10 +104,6 @@ pub enum NoteEvent {
     },
     /// A expression expression (yes, expression expression) event, available on
     /// [`MidiConfig::Basic`] and up. Not all hosts may support these expressions.
-    ///
-    /// # Note
-    ///
-    /// Currently not yet supported for VST3 plugins.
     Expression {
         timing: u32,
         /// The note's channel, from 0 to 16.
@@ -135,10 +115,6 @@ pub enum NoteEvent {
     },
     /// A brightness expression event, available on [`MidiConfig::Basic`] and up. Not all hosts may support
     /// these expressions.
-    ///
-    /// # Note
-    ///
-    /// Currently not yet supported for VST3 plugins.
     Brightness {
         timing: u32,
         /// The note's channel, from 0 to 16.
@@ -149,10 +125,6 @@ pub enum NoteEvent {
         brightness: f32,
     },
     /// A MIDI channel pressure event, available on [`MidiConfig::MidiCCs`] and up.
-    ///
-    /// # Note
-    ///
-    /// Currently not yet supported for VST3 plugins.
     MidiChannelPressure {
         timing: u32,
         /// The affected channel, from 0 to 16.
@@ -161,10 +133,6 @@ pub enum NoteEvent {
         pressure: f32,
     },
     /// A MIDI pitch bend, available on [`MidiConfig::MidiCCs`] and up.
-    ///
-    /// # Note
-    ///
-    /// Currently not yet supported for VST3 plugins.
     MidiPitchBend {
         timing: u32,
         /// The affected channel, from 0 to 16.
@@ -179,8 +147,6 @@ pub enum NoteEvent {
     /// The wrapper does not perform any special handling for two message 14-bit CCs (where the CC
     /// number is in the range `[0, 31]`, and the next CC is that number plus 32) or for four
     /// message RPN messages. For now you will need to handle these CCs yourself.
-    ///
-    /// Currently not yet supported for VST3 plugins.
     MidiCC {
         timing: u32,
         /// The affected channel, from 0 to 16.