summaryrefslogtreecommitdiffstats
path: root/src/engine/InputPort.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
committerDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
commit9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2 (patch)
tree089c1366a567dfbf88c0473288236b276ef24bf6 /src/engine/InputPort.cpp
parent987710474b824cb92d83ff6fa7a090f50e10756f (diff)
downloadingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.tar.gz
ingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.tar.bz2
ingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.zip
Squeeze blank lines and delete trailing whitespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3152 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/InputPort.cpp')
-rw-r--r--src/engine/InputPort.cpp8
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