mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-14 20:40:03 +02:00
Implement CLAP note ports extension
This commit is contained in:
@@ -80,12 +80,15 @@ struct Host {
|
||||
* available to the bridged CLAP plugins using proxies.
|
||||
*/
|
||||
struct SupportedHostExtensions {
|
||||
// Don't forget to add new extensions to the log output
|
||||
// Don't forget to add new extensions to the logger and to the serialize
|
||||
// method
|
||||
bool supports_audio_ports = false;
|
||||
bool supports_note_ports = false;
|
||||
|
||||
template <typename S>
|
||||
void serialize(S& s) {
|
||||
s.value1b(supports_audio_ports);
|
||||
s.value1b(supports_note_ports);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user