mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-06-16 08:23:55 +02:00
Fully implement the CLAP params extension
This commit is contained in:
@@ -22,7 +22,7 @@ Yabridge currently tracks CLAP 1.1.1. The implementation status for CLAP's core
|
||||
| `clap.log` | :x: Not supported yet |
|
||||
| `clap.note-name` | :x: Not supported yet |
|
||||
| `clap.note-ports` | :heavy_check_mark: |
|
||||
| `clap.params` | :x: Not supported yet |
|
||||
| `clap.params` | :heavy_check_mark: |
|
||||
| `clap.posix-fd-support` | :x: Not supported yet |
|
||||
| `clap.render` | :x: Not supported yet |
|
||||
| `clap.state` | :x: Not supported yet |
|
||||
|
||||
@@ -84,11 +84,13 @@ struct SupportedHostExtensions {
|
||||
// method
|
||||
bool supports_audio_ports = false;
|
||||
bool supports_note_ports = false;
|
||||
bool supports_params = false;
|
||||
|
||||
template <typename S>
|
||||
void serialize(S& s) {
|
||||
s.value1b(supports_audio_ports);
|
||||
s.value1b(supports_note_ports);
|
||||
s.value1b(supports_params);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@@ -117,11 +117,13 @@ struct SupportedPluginExtensions {
|
||||
// method
|
||||
bool supports_audio_ports = false;
|
||||
bool supports_note_ports = false;
|
||||
bool supports_params = false;
|
||||
|
||||
template <typename S>
|
||||
void serialize(S& s) {
|
||||
s.value1b(supports_audio_ports);
|
||||
s.value1b(supports_note_ports);
|
||||
s.value1b(supports_params);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user