mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-06-21 03:13:56 +02:00
Fix CLAP logging overload order
This commit is contained in:
@@ -586,15 +586,6 @@ bool ClapLogger::log_request(bool is_host_plugin,
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ClapLogger::log_request(
|
|
||||||
bool is_host_plugin,
|
|
||||||
const clap::ext::params::host::RequestFlush& request) {
|
|
||||||
return log_request_base(is_host_plugin, [&](auto& message) {
|
|
||||||
message << request.owner_instance_id
|
|
||||||
<< ": clap_host_params::request_flush()";
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
bool ClapLogger::log_request(bool is_host_plugin,
|
bool ClapLogger::log_request(bool is_host_plugin,
|
||||||
const clap::ext::latency::host::Changed& request) {
|
const clap::ext::latency::host::Changed& request) {
|
||||||
return log_request_base(is_host_plugin, [&](auto& message) {
|
return log_request_base(is_host_plugin, [&](auto& message) {
|
||||||
@@ -646,6 +637,15 @@ bool ClapLogger::log_request(bool is_host_plugin,
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool ClapLogger::log_request(
|
||||||
|
bool is_host_plugin,
|
||||||
|
const clap::ext::params::host::RequestFlush& request) {
|
||||||
|
return log_request_base(is_host_plugin, [&](auto& message) {
|
||||||
|
message << request.owner_instance_id
|
||||||
|
<< ": clap_host_params::request_flush()";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
bool ClapLogger::log_request(bool is_host_plugin,
|
bool ClapLogger::log_request(bool is_host_plugin,
|
||||||
const clap::ext::tail::host::Changed& request) {
|
const clap::ext::tail::host::Changed& request) {
|
||||||
return log_request_base(is_host_plugin, [&](auto& message) {
|
return log_request_base(is_host_plugin, [&](auto& message) {
|
||||||
|
|||||||
@@ -169,8 +169,6 @@ class ClapLogger {
|
|||||||
const clap::ext::params::host::Rescan&);
|
const clap::ext::params::host::Rescan&);
|
||||||
bool log_request(bool is_host_plugin,
|
bool log_request(bool is_host_plugin,
|
||||||
const clap::ext::params::host::Clear&);
|
const clap::ext::params::host::Clear&);
|
||||||
bool log_request(bool is_host_plugin,
|
|
||||||
const clap::ext::params::host::RequestFlush&);
|
|
||||||
bool log_request(bool is_host_plugin,
|
bool log_request(bool is_host_plugin,
|
||||||
const clap::ext::latency::host::Changed&);
|
const clap::ext::latency::host::Changed&);
|
||||||
bool log_request(bool is_host_plugin,
|
bool log_request(bool is_host_plugin,
|
||||||
@@ -178,6 +176,8 @@ class ClapLogger {
|
|||||||
|
|
||||||
// Audio thread callbacks
|
// Audio thread callbacks
|
||||||
bool log_request(bool is_host_plugin, const clap::ext::log::host::Log&);
|
bool log_request(bool is_host_plugin, const clap::ext::log::host::Log&);
|
||||||
|
bool log_request(bool is_host_plugin,
|
||||||
|
const clap::ext::params::host::RequestFlush&);
|
||||||
bool log_request(bool is_host_plugin,
|
bool log_request(bool is_host_plugin,
|
||||||
const clap::ext::tail::host::Changed&);
|
const clap::ext::tail::host::Changed&);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user