Fully implement the CLAP params extension

This commit is contained in:
Robbert van der Helm
2022-09-23 20:51:44 +02:00
parent 5732b45769
commit 0f58f3409b
12 changed files with 362 additions and 11 deletions
+2
View File
@@ -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);
}
};