Expand description
Traits and structs describing plugins and editors. This includes extension structs for features that are specific to one or more plugin-APIs.
Modules
- vst3
vst3
Enums
- Indicates the current situation after the plugin has processed audio.
Traits
- The main plugin trait covering functionality common across most plugin formats. Most formats also have another trait with more specific data and functionality that needs to be implemented before the plugin can be exported to that format. The wrappers will use this to expose the plugin in a particular plugin format.
Type Definitions
- A function that can execute a plugin’s
BackgroundTask
s. A plugin can dispatch these tasks from theinitialize()
function, theprocess()
function, or the GUI, so they can be deferred for later to avoid blocking realtime contexts.