diff options
Diffstat (limited to 'src/engine/InputPort.cpp')
-rw-r--r-- | src/engine/InputPort.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/engine/InputPort.cpp b/src/engine/InputPort.cpp index f65b9a5a..02947aa7 100644 --- a/src/engine/InputPort.cpp +++ b/src/engine/InputPort.cpp @@ -61,7 +61,6 @@ InputPort::InputPort(BufferFactory& bufs, } } - bool InputPort::apply_poly(Maid& maid, uint32_t poly) { @@ -74,7 +73,6 @@ InputPort::apply_poly(Maid& maid, uint32_t poly) return true; } - /** Set \a buffers appropriately if this port has \a num_connections connections. * \return true iff buffers are locally owned by the port */ @@ -109,7 +107,6 @@ InputPort::get_buffers(BufferFactory& bufs, Raul::Array<BufferFactory::Ref>* buf return true; } - /** Add a connection. Realtime safe. * * The buffer of this port will be set directly to the connection's buffer @@ -130,7 +127,6 @@ InputPort::add_connection(Connections::Node* const c) _broadcast = true; } - /** Remove a connection. Realtime safe. * * Note that setup_buffers must be called after this before the change @@ -166,7 +162,6 @@ InputPort::remove_connection(ProcessContext& context, const OutputPort* src_port return connection; } - /** Prepare buffer for access, mixing if necessary. Realtime safe. */ void @@ -206,7 +201,6 @@ InputPort::pre_process(Context& context) broadcast_value(context, false); } - void InputPort::post_process(Context& context) { @@ -221,7 +215,6 @@ InputPort::post_process(Context& context) } } - bool InputPort::direct_connect() const { @@ -231,6 +224,5 @@ InputPort::direct_connect() const && !_connections.front()->must_queue(); } - } // namespace Ingen |