diff options
Diffstat (limited to 'src/libs/engine/Patch.hpp')
-rw-r--r-- | src/libs/engine/Patch.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/engine/Patch.hpp b/src/libs/engine/Patch.hpp index 32a02f76..75de93cb 100644 --- a/src/libs/engine/Patch.hpp +++ b/src/libs/engine/Patch.hpp @@ -54,7 +54,7 @@ public: void activate(); void deactivate(); - void process(SampleCount nframes, FrameTime start, FrameTime end); + void process(ProcessContext& events, SampleCount nframes, FrameTime start, FrameTime end); void set_buffer_size(size_t size); @@ -113,8 +113,8 @@ public: private: inline void compile_recursive(Node* n, CompiledPatch* output) const; - void process_parallel(SampleCount nframes, FrameTime start, FrameTime end); - void process_single(SampleCount nframes, FrameTime start, FrameTime end); + void process_parallel(ProcessContext& context, SampleCount nframes, FrameTime start, FrameTime end); + void process_single(ProcessContext& context, SampleCount nframes, FrameTime start, FrameTime end); Engine& _engine; uint32_t _internal_poly; |