summaryrefslogtreecommitdiffstats
path: root/src/server/OutputPort.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-08-12 05:16:58 +0000
committerDavid Robillard <d@drobilla.net>2012-08-12 05:16:58 +0000
commit65a81eec8943dc0504b8b8755f9866ee4993372c (patch)
tree65ba6d09f13bee9c40fe5f82185174ce388134b0 /src/server/OutputPort.cpp
parente49cb96073f514edbe1b7a9854b49c47af35463c (diff)
downloadingen-65a81eec8943dc0504b8b8755f9866ee4993372c.tar.gz
ingen-65a81eec8943dc0504b8b8755f9866ee4993372c.tar.bz2
ingen-65a81eec8943dc0504b8b8755f9866ee4993372c.zip
Remove message context cruft.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4668 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/OutputPort.cpp')
-rw-r--r--src/server/OutputPort.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/server/OutputPort.cpp b/src/server/OutputPort.cpp
index 6b5ba5ed..7558dda3 100644
--- a/src/server/OutputPort.cpp
+++ b/src/server/OutputPort.cpp
@@ -44,17 +44,17 @@ OutputPort::OutputPort(BufferFactory& bufs,
_broadcast = true;
- setup_buffers(bufs.engine().message_context(), bufs, poly);
+ setup_buffers(bufs, poly, false);
}
bool
-OutputPort::get_buffers(Context& context,
- BufferFactory& bufs,
+OutputPort::get_buffers(BufferFactory& bufs,
Raul::Array<BufferRef>* buffers,
- uint32_t poly) const
+ uint32_t poly,
+ bool real_time) const
{
for (uint32_t v = 0; v < poly; ++v)
- buffers->at(v) = bufs.get(context, buffer_type(), _buffer_size);
+ buffers->at(v) = bufs.get(buffer_type(), _buffer_size, real_time);
return true;
}