diff options
Diffstat (limited to 'lv2/lv2plug.in/ns/ext/atom/atom.ttl')
-rw-r--r-- | lv2/lv2plug.in/ns/ext/atom/atom.ttl | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/lv2/lv2plug.in/ns/ext/atom/atom.ttl b/lv2/lv2plug.in/ns/ext/atom/atom.ttl index 1a27389..f58d6fa 100644 --- a/lv2/lv2plug.in/ns/ext/atom/atom.ttl +++ b/lv2/lv2plug.in/ns/ext/atom/atom.ttl @@ -21,6 +21,7 @@ @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix ui: <http://lv2plug.in/ns/extensions/ui#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . <http://lv2plug.in/ns/ext/atom> @@ -499,14 +500,23 @@ MIDI events is described like so:</p> """ . atom:eventTransfer - a <http://lv2plug.in/ns/extensions/ui#PortProtocol> ; + a ui:PortProtocol ; lv2:documentation """ -<p>Transfer of individual events. Useful as the -<code>format</code> for a LV2_UI_Write_Function, or the -<code>port_protocol</code> for LV2_PUI_Host_Descriptor::write_port().</p> +<p>Transfer of individual events in a port buffer. Useful as the +<code>format</code> for a LV2_UI_Write_Function.</p> <p>This protocol applies to ports which contain events, usually in an atom:Sequence. The host must transfer each individual event to the recipient. The format of the received data is an LV2_Atom, there is no timestamp header.</p> """ . + +atom:atomTransfer + a ui:PortProtocol ; + lv2:documentation """ +<p>Transfer of the complete atom in a port buffer. Useful as the +<code>format</code> for a LV2_UI_Write_Function.</p> + +<p>This protocol applies to atom ports. The host must transfer the complete +atom contained in the port, including header.</p> +""" . |