mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 12:10:09 +02:00
Move all window handling to the Wine host side
This commit is contained in:
@@ -167,6 +167,7 @@ void Logger::log_event(bool is_dispatch,
|
||||
message << "<" << s.size() << " bytes>";
|
||||
}
|
||||
},
|
||||
[&](const intptr_t&) { message << "<nullptr>"; },
|
||||
[&](const AEffect&) { message << "<nullptr>"; },
|
||||
[&](const DynamicVstEvents& events) {
|
||||
message << "<" << events.events.size() << " midi_events>";
|
||||
@@ -175,8 +176,7 @@ void Logger::log_event(bool is_dispatch,
|
||||
message << "<writable_buffer>";
|
||||
},
|
||||
[&](const WantsVstTimeInfo&) { message << "<nullptr>"; },
|
||||
[&](const WantsString&) { message << "<writable_string>"; },
|
||||
[&](const WantsWindowHandle&) { message << "<nullptr>"; }},
|
||||
[&](const WantsString&) { message << "<writable_string>"; }},
|
||||
payload);
|
||||
|
||||
message << ")";
|
||||
@@ -210,10 +210,7 @@ void Logger::log_event_response(bool is_dispatch,
|
||||
}
|
||||
},
|
||||
[&](const AEffect&) { message << ", <AEffect_object>"; },
|
||||
[&](const VstTimeInfo&) { message << ", <time_info>"; },
|
||||
[&](const intptr_t& window_handle) {
|
||||
message << ", window #" << window_handle;
|
||||
}},
|
||||
[&](const VstTimeInfo&) { message << ", <time_info>"; }},
|
||||
payload);
|
||||
|
||||
log(message.str());
|
||||
|
||||
Reference in New Issue
Block a user