summaryrefslogtreecommitdiffstats
path: root/src/server/LV2Info.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-05-31 02:09:54 +0000
committerDavid Robillard <d@drobilla.net>2012-05-31 02:09:54 +0000
commita62965fa2e16f283680de5580e5bb6307fdf2a01 (patch)
tree4b5a0ee96e98bcd3abc849db166485d5a54714de /src/server/LV2Info.cpp
parent227df4d7e475de8ca69c498984ae12e61c3324ec (diff)
downloadingen-a62965fa2e16f283680de5580e5bb6307fdf2a01.tar.gz
ingen-a62965fa2e16f283680de5580e5bb6307fdf2a01.tar.bz2
ingen-a62965fa2e16f283680de5580e5bb6307fdf2a01.zip
Implement Control/CV morph ports.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4475 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/LV2Info.cpp')
-rw-r--r--src/server/LV2Info.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/server/LV2Info.cpp b/src/server/LV2Info.cpp
index 5a9ac556..7f985492 100644
--- a/src/server/LV2Info.cpp
+++ b/src/server/LV2Info.cpp
@@ -19,6 +19,7 @@
#include <assert.h>
#include "lv2/lv2plug.in/ns/ext/atom/atom.h"
+#include "lv2/lv2plug.in/ns/ext/morph/morph.h"
#include "lv2/lv2plug.in/ns/ext/resize-port/resize-port.h"
#include "lv2/lv2plug.in/ns/ext/worker/worker.h"
@@ -43,6 +44,9 @@ LV2Info::LV2Info(Ingen::Shared::World* world)
, lv2_OutputPort(lilv_new_uri(world->lilv_world(), LV2_CORE__OutputPort))
, lv2_default(lilv_new_uri(world->lilv_world(), LV2_CORE__default))
, lv2_portProperty(lilv_new_uri(world->lilv_world(), LV2_CORE__portProperty))
+ , morph_AutoMorphPort(lilv_new_uri(world->lilv_world(), LV2_MORPH__AutoMorphPort))
+ , morph_MorphPort(lilv_new_uri(world->lilv_world(), LV2_MORPH__MorphPort))
+ , morph_supportsType(lilv_new_uri(world->lilv_world(), LV2_MORPH__supportsType))
, rsz_minimumSize(lilv_new_uri(world->lilv_world(), LV2_RESIZE_PORT__minimumSize))
, work_schedule(lilv_new_uri(world->lilv_world(), LV2_WORKER__schedule))
, _world(world)