The wrapper now takes care of processing type - all objects updated to fit the new design
parent
6d9e9d3ffe
commit
481dd955ba
@ -1,10 +1,12 @@
|
||||
|
||||
#include <clients/nrt/NMFClient.hpp>
|
||||
#include <FluidSCWrapper.hpp>
|
||||
|
||||
static InterfaceTable *ft;
|
||||
|
||||
PluginLoad(OfflineFluidDecompositionUGens) {
|
||||
PluginLoad(OfflineFluidDecompositionUGens)
|
||||
{
|
||||
ft = inTable;
|
||||
using namespace fluid::client;
|
||||
makeSCWrapper<NMFClient,double,float>("BufNMF",NMFParams, ft);
|
||||
makeSCWrapper<NMFClient>("BufNMF", ft);
|
||||
}
|
||||
|
||||
@ -1,11 +1,13 @@
|
||||
|
||||
#include <clients/nrt/FluidNRTClientWrapper.hpp>
|
||||
#include <clients/rt/TransientClient.hpp>
|
||||
#include <FluidSCWrapper.hpp>
|
||||
|
||||
static InterfaceTable *ft;
|
||||
|
||||
PluginLoad(OfflineFluidDecompositionUGens) {
|
||||
PluginLoad(OfflineFluidDecompositionUGens)
|
||||
{
|
||||
ft = inTable;
|
||||
using namespace fluid::client;
|
||||
makeSCWrapper<NRTTransients,double,float>("BufTransients",NRTTransientParams,ft);
|
||||
makeSCWrapper<NRTTransients>("BufTransients", ft);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue