summaryrefslogtreecommitdiffstats
path: root/src/engine/LV2Node.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/LV2Node.hpp')
-rw-r--r--src/engine/LV2Node.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/LV2Node.hpp b/src/engine/LV2Node.hpp
index 8a543f2d..e971b1d0 100644
--- a/src/engine/LV2Node.hpp
+++ b/src/engine/LV2Node.hpp
@@ -46,9 +46,9 @@ public:
~LV2Node();
- bool instantiate();
+ bool instantiate(BufferFactory& bufs);
- bool prepare_poly(uint32_t poly);
+ bool prepare_poly(BufferFactory& bufs, uint32_t poly);
bool apply_poly(Raul::Maid& maid, uint32_t poly);
void activate();
@@ -58,7 +58,7 @@ public:
void process(ProcessContext& context);
- void set_port_buffer(uint32_t voice, uint32_t port_num, Buffer* buf);
+ void set_port_buffer(uint32_t voice, uint32_t port_num, SharedPtr<Buffer> buf);
protected:
LV2Plugin* _lv2_plugin;