aboutsummaryrefslogtreecommitdiffstats
path: root/core.lv2
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-03-16 23:20:37 +0000
committerDavid Robillard <d@drobilla.net>2011-03-16 23:20:37 +0000
commit6c180e2fbf4e4406d8ceceea0aab6dd7de7bc4b1 (patch)
tree19fd1430b7e0565c16a86534b2867a80bcac6a9f /core.lv2
parent88ca1e3514eeb7fd15ea85cc00bf5858d8bd474f (diff)
downloadlv2-6c180e2fbf4e4406d8ceceea0aab6dd7de7bc4b1.tar.xz
Define ControlPort and AudioPort data types as C float instead of IEEE
float (matches reality of the API).
Diffstat (limited to 'core.lv2')
-rw-r--r--core.lv2/lv2.ttl14
1 files changed, 8 insertions, 6 deletions
diff --git a/core.lv2/lv2.ttl b/core.lv2/lv2.ttl
index ea020d1..5cf4276 100644
--- a/core.lv2/lv2.ttl
+++ b/core.lv2/lv2.ttl
@@ -297,17 +297,19 @@ be written to by the plugin during their run method.
lv2:ControlPort a rdfs:Class ;
rdfs:subClassOf lv2:Port ;
rdfs:label "Control port" ;
- rdfs:comment """
-Ports of this type will be connected to a pointer to a single value conforming
-to the 32bit IEEE-754 floating point specification.
+ lv2:documentation """
+
+<p>Ports of this type will be connected to a pointer to a single value of C
+type <code>float</code>.</p>
+
""" .
lv2:AudioPort a rdfs:Class ;
rdfs:subClassOf lv2:Port ;
rdfs:label "Audio port" ;
- rdfs:comment """
-Ports of this type will be connected to an array of length SampleCount
-conforming to the 32bit IEEE-754 floating point specification.
+ lv2:documentation """
+<p>Ports of this type will be connected to an array of length SampleCount with
+elements of C type <code>float</code>.</p>
""" .