summaryrefslogtreecommitdiffstats
path: root/src/server/NodeImpl.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-08-11 02:13:56 +0000
committerDavid Robillard <d@drobilla.net>2012-08-11 02:13:56 +0000
commit571cbb33901b2a6b6fbc6f311723bc9bc561e731 (patch)
tree90c1731c8aea550277cf5b83b3429502a7fb3040 /src/server/NodeImpl.hpp
parent46eff0830c8894997fb624733fadcea9c6d74812 (diff)
downloadingen-571cbb33901b2a6b6fbc6f311723bc9bc561e731.tar.gz
ingen-571cbb33901b2a6b6fbc6f311723bc9bc561e731.tar.bz2
ingen-571cbb33901b2a6b6fbc6f311723bc9bc561e731.zip
Vectorizable (by GCC with -ftree-vectorize) mixing and Buffer::set_block().
Custom SSE accelerated peak detection when SSE is available at compile time. Less mixing overhead in general. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4651 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/NodeImpl.hpp')
-rw-r--r--src/server/NodeImpl.hpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/server/NodeImpl.hpp b/src/server/NodeImpl.hpp
index 2b0faf03..0b44e58e 100644
--- a/src/server/NodeImpl.hpp
+++ b/src/server/NodeImpl.hpp
@@ -107,10 +107,9 @@ public:
virtual void post_process(ProcessContext& context);
/** Set the buffer of a port to a given buffer (e.g. connect plugin to buffer) */
- virtual void set_port_buffer(uint32_t voice,
- uint32_t port_num,
- BufferRef buf,
- SampleCount offset);
+ virtual void set_port_buffer(uint32_t voice,
+ uint32_t port_num,
+ BufferRef buf);
virtual GraphObject* port(uint32_t index) const;
virtual PortImpl* port_impl(uint32_t index) const { return (*_ports)[index]; }