Fully implement IAudioPresentationLatency

Now we support all VST 3.1.0 interfaces.
This commit is contained in:
Robbert van der Helm
2021-01-04 22:33:44 +01:00
parent fe8211180f
commit 0e3b5af94e
4 changed files with 20 additions and 5 deletions
+2
View File
@@ -128,6 +128,8 @@ struct InstanceInterfaces {
// All smart pointers below are created from `component`. They will be null
// pointers if `component` did not implement the interface.
Steinberg::FUnknownPtr<Steinberg::Vst::IAudioPresentationLatency>
audio_presentation_latency;
Steinberg::FUnknownPtr<Steinberg::Vst::IAudioProcessor> audio_processor;
Steinberg::FUnknownPtr<Steinberg::Vst::IComponent> component;
Steinberg::FUnknownPtr<Steinberg::Vst::IConnectionPoint> connection_point;