mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-09 04:50:14 +02:00
Implement IComponentHandler::performEdit()
This commit is contained in:
@@ -450,7 +450,16 @@ bool Vst3Logger::log_request(bool is_host_vst,
|
||||
const YaComponentHandler::BeginEdit& request) {
|
||||
return log_request_base(is_host_vst, [&](auto& message) {
|
||||
message << request.owner_instance_id
|
||||
<< ": IComponentHandler::beginEdit(" << request.id << ")";
|
||||
<< ": IComponentHandler::beginEdit(id = " << request.id << ")";
|
||||
});
|
||||
}
|
||||
|
||||
bool Vst3Logger::log_request(bool is_host_vst,
|
||||
const YaComponentHandler::PerformEdit& request) {
|
||||
return log_request_base(is_host_vst, [&](auto& message) {
|
||||
message << request.owner_instance_id
|
||||
<< ": IComponentHandler::performEdit(id = " << request.id
|
||||
<< ", valueNormalized = " << request.value_normalized << ")";
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -111,6 +111,7 @@ class Vst3Logger {
|
||||
|
||||
bool log_request(bool is_host_vst, const WantsConfiguration&);
|
||||
bool log_request(bool is_host_vst, const YaComponentHandler::BeginEdit&);
|
||||
bool log_request(bool is_host_vst, const YaComponentHandler::PerformEdit&);
|
||||
|
||||
void log_response(bool is_host_vst, const Ack&);
|
||||
void log_response(
|
||||
|
||||
Reference in New Issue
Block a user