summaryrefslogtreecommitdiffstats
path: root/matriseq.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-11-09 06:58:14 +0000
committerDavid Robillard <d@drobilla.net>2015-11-09 06:58:14 +0000
commit92d4404abbe1373386e7fa7bd42a3acd1e4eeba3 (patch)
tree2e87d6ecccfeaef07f39b57e21421d54dfc5e873 /matriseq.ttl
parentd75f8b95fca74098d8b939e7236acde7c6b3a9ae (diff)
downloadmatriseq.lv2-92d4404abbe1373386e7fa7bd42a3acd1e4eeba3.tar.gz
matriseq.lv2-92d4404abbe1373386e7fa7bd42a3acd1e4eeba3.tar.bz2
matriseq.lv2-92d4404abbe1373386e7fa7bd42a3acd1e4eeba3.zip
Rewrite Matriseq for the Launchpad Pro
git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/matriseq@5817 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'matriseq.ttl')
-rw-r--r--matriseq.ttl21
1 files changed, 16 insertions, 5 deletions
diff --git a/matriseq.ttl b/matriseq.ttl
index a1c5dd8..a39b2df 100644
--- a/matriseq.ttl
+++ b/matriseq.ttl
@@ -5,6 +5,7 @@
@prefix midi: <http://lv2plug.in/ns/ext/midi#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix rsz: <http://lv2plug.in/ns/ext/resize-port#> .
@prefix time: <http://lv2plug.in/ns/ext/time#> .
<http://drobilla.net/drobilla#me>
@@ -24,16 +25,26 @@
a lv2:InputPort ,
atom:AtomPort ;
atom:bufferType atom:Sequence ;
- atom:supports time:Position ;
+ atom:supports time:Position, midi:MidiEvent ;
lv2:index 0 ;
- lv2:symbol "in" ;
- lv2:name "In"
+ lv2:symbol "control_in" ;
+ lv2:name "Control In"
] , [
a lv2:OutputPort ,
atom:AtomPort ;
atom:bufferType atom:Sequence ;
atom:supports midi:MidiEvent ;
+ rsz:minimumSize 4096 ;
lv2:index 1 ;
- lv2:symbol "out" ;
- lv2:name "Out"
+ lv2:symbol "control_out" ;
+ lv2:name "Control Out" ;
+ ] , [
+ a lv2:OutputPort ,
+ atom:AtomPort ;
+ atom:bufferType atom:Sequence ;
+ atom:supports midi:MidiEvent ;
+ rsz:minimumSize 4096 ;
+ lv2:index 2 ;
+ lv2:symbol "playback" ;
+ lv2:name "Playback"
] .