summaryrefslogtreecommitdiffstats
path: root/src/engine/LV2Node.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/LV2Node.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/LV2Node.cpp')
-rw-r--r--src/engine/LV2Node.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/engine/LV2Node.cpp b/src/engine/LV2Node.cpp
index b6109d7f..67f19bf4 100644
--- a/src/engine/LV2Node.cpp
+++ b/src/engine/LV2Node.cpp
@@ -43,7 +43,6 @@ namespace Ingen {
using namespace Shared;
-
/** Partially construct a LV2Node.
*
* Object is not usable until instantiate() is called with success.
@@ -63,13 +62,11 @@ LV2Node::LV2Node(LV2Plugin* plugin,
assert(_lv2_plugin);
}
-
LV2Node::~LV2Node()
{
delete _instances;
}
-
bool
LV2Node::prepare_poly(BufferFactory& bufs, uint32_t poly)
{
@@ -114,7 +111,6 @@ LV2Node::prepare_poly(BufferFactory& bufs, uint32_t poly)
return true;
}
-
bool
LV2Node::apply_poly(Raul::Maid& maid, uint32_t poly)
{
@@ -131,7 +127,6 @@ LV2Node::apply_poly(Raul::Maid& maid, uint32_t poly)
return NodeImpl::apply_poly(maid, poly);
}
-
/** Instantiate self from LV2 plugin descriptor.
*
* Implemented as a seperate function (rather than in the constructor) to
@@ -357,7 +352,6 @@ LV2Node::instantiate(BufferFactory& bufs)
return ret;
}
-
void
LV2Node::activate(BufferFactory& bufs)
{
@@ -367,7 +361,6 @@ LV2Node::activate(BufferFactory& bufs)
slv2_instance_activate(instance(i));
}
-
void
LV2Node::deactivate()
{
@@ -377,7 +370,6 @@ LV2Node::deactivate()
slv2_instance_deactivate(instance(i));
}
-
void
LV2Node::message_run(MessageContext& context)
{
@@ -394,7 +386,6 @@ LV2Node::message_run(MessageContext& context)
(*_message_funcs->run)(instance(0)->lv2_handle, _valid_ports, _valid_ports);
}
-
void
LV2Node::process(ProcessContext& context)
{
@@ -406,7 +397,6 @@ LV2Node::process(ProcessContext& context)
NodeImpl::post_process(context);
}
-
void
LV2Node::set_port_buffer(uint32_t voice, uint32_t port_num,
IntrusivePtr<Buffer> buf, SampleCount offset)
@@ -416,6 +406,5 @@ LV2Node::set_port_buffer(uint32_t voice, uint32_t port_num,
buf ? buf->port_data(_ports->at(port_num)->buffer_type(), offset) : NULL);
}
-
} // namespace Ingen