mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 20:10:13 +02:00
Fully implement IComponentHandlerBusActivation
We now support all VST 3.6.8 features. (or technically, also all VST 3.6.10 features)
This commit is contained in:
@@ -119,10 +119,13 @@ tresult PLUGIN_API Vst3ComponentHandlerProxyImpl::requestBusActivation(
|
||||
Steinberg::Vst::BusDirection dir,
|
||||
int32 index,
|
||||
TBool state) {
|
||||
// TODO: Implement
|
||||
std::cerr << "TODO: IComponentHandlerBusActivation::requestBusActivation()"
|
||||
<< std::endl;
|
||||
return Steinberg::kNotImplemented;
|
||||
return bridge.send_message(
|
||||
YaComponentHandlerBusActivation::RequestBusActivation{
|
||||
.owner_instance_id = owner_instance_id(),
|
||||
.type = type,
|
||||
.dir = dir,
|
||||
.index = index,
|
||||
.state = state});
|
||||
}
|
||||
|
||||
tresult PLUGIN_API Vst3ComponentHandlerProxyImpl::notifyUnitSelection(
|
||||
|
||||
Reference in New Issue
Block a user