1
0
Fork 0

Remove notes about VST3 support for events

This commit is contained in:
Robbert van der Helm 2022-04-08 20:59:46 +02:00
parent c082085711
commit 8db35aaf9d

View file

@ -59,10 +59,6 @@ pub enum NoteEvent {
}, },
/// A volume expression event, available on [`MidiConfig::Basic`] and up. Not all hosts may /// A volume expression event, available on [`MidiConfig::Basic`] and up. Not all hosts may
/// support these expressions. /// support these expressions.
///
/// # Note
///
/// Currently not yet supported for VST3 plugins.
Volume { Volume {
timing: u32, timing: u32,
/// The note's channel, from 0 to 16. /// 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 /// A panning expression event, available on [`MidiConfig::Basic`] and up. Not all hosts may
/// support these expressions. /// support these expressions.
///
/// # Note
///
/// Currently not yet supported for VST3 plugins.
Pan { Pan {
timing: u32, timing: u32,
/// The note's channel, from 0 to 16. /// 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 /// A tuning expression event, available on [`MidiConfig::Basic`] and up. Not all hosts may support
/// these expressions. /// these expressions.
///
/// # Note
///
/// Currently not yet supported for VST3 plugins.
Tuning { Tuning {
timing: u32, timing: u32,
/// The note's channel, from 0 to 16. /// 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 /// A vibrato expression event, available on [`MidiConfig::Basic`] and up. Not all hosts may support
/// these expressions. /// these expressions.
///
/// # Note
///
/// Currently not yet supported for VST3 plugins.
Vibrato { Vibrato {
timing: u32, timing: u32,
/// The note's channel, from 0 to 16. /// The note's channel, from 0 to 16.
@ -120,10 +104,6 @@ pub enum NoteEvent {
}, },
/// A expression expression (yes, expression expression) event, available on /// A expression expression (yes, expression expression) event, available on
/// [`MidiConfig::Basic`] and up. Not all hosts may support these expressions. /// [`MidiConfig::Basic`] and up. Not all hosts may support these expressions.
///
/// # Note
///
/// Currently not yet supported for VST3 plugins.
Expression { Expression {
timing: u32, timing: u32,
/// The note's channel, from 0 to 16. /// 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 /// A brightness expression event, available on [`MidiConfig::Basic`] and up. Not all hosts may support
/// these expressions. /// these expressions.
///
/// # Note
///
/// Currently not yet supported for VST3 plugins.
Brightness { Brightness {
timing: u32, timing: u32,
/// The note's channel, from 0 to 16. /// The note's channel, from 0 to 16.
@ -149,10 +125,6 @@ pub enum NoteEvent {
brightness: f32, brightness: f32,
}, },
/// A MIDI channel pressure event, available on [`MidiConfig::MidiCCs`] and up. /// A MIDI channel pressure event, available on [`MidiConfig::MidiCCs`] and up.
///
/// # Note
///
/// Currently not yet supported for VST3 plugins.
MidiChannelPressure { MidiChannelPressure {
timing: u32, timing: u32,
/// The affected channel, from 0 to 16. /// The affected channel, from 0 to 16.
@ -161,10 +133,6 @@ pub enum NoteEvent {
pressure: f32, pressure: f32,
}, },
/// A MIDI pitch bend, available on [`MidiConfig::MidiCCs`] and up. /// A MIDI pitch bend, available on [`MidiConfig::MidiCCs`] and up.
///
/// # Note
///
/// Currently not yet supported for VST3 plugins.
MidiPitchBend { MidiPitchBend {
timing: u32, timing: u32,
/// The affected channel, from 0 to 16. /// 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 /// 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 /// 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. /// message RPN messages. For now you will need to handle these CCs yourself.
///
/// Currently not yet supported for VST3 plugins.
MidiCC { MidiCC {
timing: u32, timing: u32,
/// The affected channel, from 0 to 16. /// The affected channel, from 0 to 16.