mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 20:10:13 +02:00
Fully implement INoteExpressionPhysicalUIMapping
With this we support all VST 3.6.11 features.
This commit is contained in:
@@ -664,11 +664,16 @@ tresult PLUGIN_API Vst3PluginProxyImpl::getPhysicalUIMapping(
|
||||
int32 busIndex,
|
||||
int16 channel,
|
||||
Steinberg::Vst::PhysicalUIMapList& list) {
|
||||
// TODO: Implement
|
||||
bridge.logger.log(
|
||||
"TODO: Implement "
|
||||
"INoteExpressionPhysicalUIMapping::getPhysicalUIMapping()");
|
||||
return Steinberg::kNotImplemented;
|
||||
const GetNotePhysicalUIMappingResponse response = bridge.send_message(
|
||||
YaNoteExpressionPhysicalUIMapping::GetNotePhysicalUIMapping{
|
||||
.instance_id = instance_id(),
|
||||
.bus_index = busIndex,
|
||||
.channel = channel,
|
||||
.list = list});
|
||||
|
||||
response.list.write_back(list);
|
||||
|
||||
return response.result;
|
||||
}
|
||||
|
||||
tresult PLUGIN_API Vst3PluginProxyImpl::initialize(FUnknown* context) {
|
||||
|
||||
Reference in New Issue
Block a user