clap

CLAP Audio Plugin API
Log | Files | Refs | README | LICENSE

commit e5780304179cbad454df1908e3f07558540b12e6
parent a9eaad04957430316f91c7d454abbc698f21c5af
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Sun, 22 May 2022 09:41:47 +0200

Documentation

Diffstat:
Minclude/clap/events.h | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/include/clap/events.h b/include/clap/events.h @@ -22,10 +22,11 @@ typedef struct clap_event_header { static const CLAP_CONSTEXPR uint16_t CLAP_CORE_EVENT_SPACE_ID = 0; enum clap_event_flags { - // indicate a live momentary event + // Indicate a live user event, for example a user turning a phisical knob + // or playing a physical key. CLAP_EVENT_IS_LIVE = 1 << 0, - // indicate that the event should not be recorded. + // Indicate that the event should not be recorded. // For example this is useful when a parameter changes because of a MIDI CC, // because if the host records both the MIDI CC automation and the parameter // automation there will be a conflict.