summaryrefslogtreecommitdiffstats
path: root/src/server/OutputPort.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-07-31 04:34:18 +0000
committerDavid Robillard <d@drobilla.net>2012-07-31 04:34:18 +0000
commitd184de93fce861f4b632f410bde8d527ce1bf34f (patch)
tree9efa412f62028113381f66f8fe256d09fdeb6749 /src/server/OutputPort.cpp
parent66ac730782803a47ae4977d2db2407126005f4bd (diff)
downloadingen-d184de93fce861f4b632f410bde8d527ce1bf34f.tar.gz
ingen-d184de93fce861f4b632f410bde8d527ce1bf34f.tar.bz2
ingen-d184de93fce861f4b632f410bde8d527ce1bf34f.zip
Move continuous value setting stuff from AudioBuffer to PortImpl.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4582 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/OutputPort.cpp')
-rw-r--r--src/server/OutputPort.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/server/OutputPort.cpp b/src/server/OutputPort.cpp
index 4c790c0b..6b5ba5ed 100644
--- a/src/server/OutputPort.cpp
+++ b/src/server/OutputPort.cpp
@@ -69,8 +69,9 @@ OutputPort::pre_process(Context& context)
void
OutputPort::post_process(Context& context)
{
- for (uint32_t v = 0; v < _poly; ++v)
- _buffers->at(v)->prepare_read(context);
+ for (uint32_t v = 0; v < _poly; ++v) {
+ update_set_state(context, v);
+ }
if (_broadcast)
broadcast_value(context, false);