clap

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

commit 927309abee88d8dbb255e6a425197dc6fb55eb78
parent 3c4972100542842cee7c85f291b0858692203831
Author: trinitou <debuggleburger@gmail.com>
Date:   Sun,  4 Dec 2022 12:23:39 +0100

Triggers are stateless and always require processing

Diffstat:
Minclude/clap/ext/draft/triggers.h | 7-------
1 file changed, 0 insertions(+), 7 deletions(-)

diff --git a/include/clap/ext/draft/triggers.h b/include/clap/ext/draft/triggers.h @@ -42,13 +42,6 @@ enum { // Does this trigger support per port automations? CLAP_TRIGGER_IS_AUTOMATABLE_PER_PORT = 1 << 4, - - // This trigger will affect the plugin output and requires to be done via - // process() if the plugin is active. - // - // A simple example would be a sample-and-hold, triggering it will change the output signal and must be - // processed. - CLAP_TRIGGER_REQUIRES_PROCESS = 1 << 5, }; typedef uint32_t clap_trigger_info_flags;