summaryrefslogtreecommitdiffstats
path: root/src/server/PatchImpl.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/PatchImpl.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/PatchImpl.cpp')
-rw-r--r--src/server/PatchImpl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/PatchImpl.cpp b/src/server/PatchImpl.cpp
index 1cda21a0..35badeb6 100644
--- a/src/server/PatchImpl.cpp
+++ b/src/server/PatchImpl.cpp
@@ -126,14 +126,14 @@ PatchImpl::apply_internal_poly(ProcessContext& context,
for (uint32_t j = 0; j < (*i)->num_ports(); ++j) {
PortImpl* const port = (*i)->port_impl(j);
if (port->is_input() && dynamic_cast<InputPort*>(port)->direct_connect())
- port->setup_buffers(context, bufs, port->poly());
+ port->setup_buffers(bufs, port->poly(), true);
port->connect_buffers();
}
}
const bool polyphonic = parent_patch() && (poly == parent_patch()->internal_poly_process());
for (Ports::iterator i = _outputs.begin(); i != _outputs.end(); ++i)
- (*i)->setup_buffers(context, bufs, polyphonic ? poly : 1);
+ (*i)->setup_buffers(bufs, polyphonic ? poly : 1, true);
_poly_process = poly;
return true;