From f3546d49dbd2d673138387a87bc523c26dcece68 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 11 Sep 2016 15:21:25 +0200 Subject: Remove last vestiges of multiple run contexts --- src/server/OutputPort.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/server/OutputPort.cpp') diff --git a/src/server/OutputPort.cpp b/src/server/OutputPort.cpp index 70acfd63..4121c6a9 100644 --- a/src/server/OutputPort.cpp +++ b/src/server/OutputPort.cpp @@ -59,7 +59,7 @@ OutputPort::get_buffers(BufferFactory& bufs, } void -OutputPort::pre_process(Context& context) +OutputPort::pre_process(RunContext& context) { for (uint32_t v = 0; v < _poly; ++v) _voices->at(v).buffer->prepare_output_write(context); @@ -85,7 +85,7 @@ OutputPort::update_values(SampleCount offset, uint32_t voice) } void -OutputPort::post_process(Context& context) +OutputPort::post_process(RunContext& context) { for (uint32_t v = 0; v < _poly; ++v) { update_set_state(context, v); -- cgit v1.2.1