mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 20:10:13 +02:00
Implement IPlugView::isPLatformTypeSupported()
This of course requires us to substitute the relevant Linux platform type for the Win32 one.
This commit is contained in:
@@ -432,6 +432,21 @@ bool Vst3Logger::log_request(bool is_host_vst,
|
||||
});
|
||||
}
|
||||
|
||||
bool Vst3Logger::log_request(
|
||||
bool is_host_vst,
|
||||
const YaPlugView::IsPlatformTypeSupported& request) {
|
||||
return log_request_base(is_host_vst, [&](auto& message) {
|
||||
message << request.owner_instance_id
|
||||
<< ": IPlugView::isPLatformTypeSupported(type = \""
|
||||
<< request.type;
|
||||
if (request.type == Steinberg::kPlatformTypeX11EmbedWindowID) {
|
||||
message << "\" (will be translated to \""
|
||||
<< Steinberg::kPlatformTypeHWND << "\")";
|
||||
}
|
||||
message << ")";
|
||||
});
|
||||
}
|
||||
|
||||
bool Vst3Logger::log_request(bool is_host_vst,
|
||||
const YaPluginBase::Initialize& request) {
|
||||
return log_request_base(is_host_vst, [&](auto& message) {
|
||||
|
||||
Reference in New Issue
Block a user