From 7793ef294616e522d13bb1706c2139411f91a6f4 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 14 Aug 2008 04:05:15 +0000 Subject: Remove polyphony debugging stuff. git-svn-id: http://svn.drobilla.net/lad/ingen@1368 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/NodeBase.cpp | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'src/libs/engine') diff --git a/src/libs/engine/NodeBase.cpp b/src/libs/engine/NodeBase.cpp index f8891f68..6eb0f8d8 100644 --- a/src/libs/engine/NodeBase.cpp +++ b/src/libs/engine/NodeBase.cpp @@ -209,19 +209,6 @@ NodeBase::pre_process(ProcessContext& context) // Mix down any ports with multiple inputs for (size_t i=0; i < num_ports(); ++i) _ports->at(i)->pre_process(context); - - // Connect port buffers (FIXME: NOT NECESSARY!) - if (polyphonic()) { - for (uint32_t i=0; i < _polyphony; ++i) { - for (uint32_t j=0; j < num_ports(); ++j) { - assert(_ports->at(j)->poly() == _polyphony); - set_port_buffer(i, j, _ports->at(j)->buffer(i)); - } - } - } else { - for (uint32_t j=0; j < num_ports(); ++j) - set_port_buffer(0, j, _ports->at(j)->buffer(0)); - } } -- cgit v1.2.1