diff options
Diffstat (limited to 'src/libs/engine/LV2Node.cpp')
-rw-r--r-- | src/libs/engine/LV2Node.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/libs/engine/LV2Node.cpp b/src/libs/engine/LV2Node.cpp index ccad761f..36bfd319 100644 --- a/src/libs/engine/LV2Node.cpp +++ b/src/libs/engine/LV2Node.cpp @@ -50,6 +50,20 @@ LV2Node::LV2Node(const Plugin* plugin, } +void +LV2Node::prepare_poly(uint32_t poly) +{ + NodeBase::prepare_poly(poly); +} + + +void +LV2Node::apply_poly(Raul::Maid& maid, uint32_t poly) +{ + NodeBase::apply_poly(maid, poly); +} + + /** Instantiate self from LV2 plugin descriptor. * * Implemented as a seperate function (rather than in the constructor) to |