mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-08 04:20:13 +02:00
Implement IParameterChanges
This commit is contained in:
@@ -18,8 +18,12 @@
|
||||
|
||||
YaParamValueQueue::YaParamValueQueue(){FUNKNOWN_CTOR}
|
||||
|
||||
YaParamValueQueue::YaParamValueQueue(
|
||||
Steinberg::Vst::IParamValueQueue& original_queue)
|
||||
YaParamValueQueue::YaParamValueQueue(Steinberg::Vst::ParamID parameter_id)
|
||||
: parameter_id(parameter_id){FUNKNOWN_CTOR}
|
||||
|
||||
// clang-format /really/ doesn't like these macros
|
||||
YaParamValueQueue::YaParamValueQueue(Steinberg::Vst::IParamValueQueue &
|
||||
original_queue)
|
||||
: parameter_id(original_queue.getParameterId()),
|
||||
queue(original_queue.getPointCount()) {
|
||||
FUNKNOWN_CTOR
|
||||
|
||||
Reference in New Issue
Block a user