From d628c904331670d021bb04ed5b6bd1e86be0ab91 Mon Sep 17 00:00:00 2001 From: Owen Green Date: Thu, 25 Jul 2019 17:51:22 +0100 Subject: [PATCH] Make it so RT classes compile as well --- include/FluidSCWrapper.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/FluidSCWrapper.hpp b/include/FluidSCWrapper.hpp index 88eedd3..768ff3e 100644 --- a/include/FluidSCWrapper.hpp +++ b/include/FluidSCWrapper.hpp @@ -136,7 +136,7 @@ public: if (mOutputConnections[i]) mOutputs[i].reset(out(static_cast(i)), 0, fullBufferSize()); } for (size_t i = 0; i < mClient.controlChannelsOut(); ++i) { mOutputs[i].reset(out(static_cast(i)), 0, 1); } - mClient.process(mAudioInputs, mOutputs); + mClient.process(mAudioInputs, mOutputs,mContext); } private: @@ -145,6 +145,7 @@ private: std::vector mAudioInputs; std::vector mOutputs; FloatControlsIter mControlsIterator; + FluidContext mContext; protected: ParamSetType mParams;