summaryrefslogtreecommitdiffstats
path: root/bundles/ingen.lv2/ingen.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2016-10-01 05:46:29 -0400
committerDavid Robillard <d@drobilla.net>2016-10-02 12:24:57 -0400
commit0f50e9239bbda77ce38f297870f8cf4158025acc (patch)
tree89e255ade0257ca3f1adf9d1e9d8a81195b45d15 /bundles/ingen.lv2/ingen.ttl
parent9b8bce71893ef450992f82a28a6a0287c479baaf (diff)
downloadingen-0f50e9239bbda77ce38f297870f8cf4158025acc.tar.gz
ingen-0f50e9239bbda77ce38f297870f8cf4158025acc.tar.bz2
ingen-0f50e9239bbda77ce38f297870f8cf4158025acc.zip
Show audio and load information in status line
Diffstat (limited to 'bundles/ingen.lv2/ingen.ttl')
-rw-r--r--bundles/ingen.lv2/ingen.ttl59
1 files changed, 59 insertions, 0 deletions
diff --git a/bundles/ingen.lv2/ingen.ttl b/bundles/ingen.lv2/ingen.ttl
index 3f7f89f5..d1a4cc2c 100644
--- a/bundles/ingen.lv2/ingen.ttl
+++ b/bundles/ingen.lv2/ingen.ttl
@@ -48,6 +48,34 @@ ingen:canvasY
rdfs:label "canvas Y" ;
rdfs:comment "The Y coordinate of an item on a canvas." .
+ingen:maxEventLoad
+ a rdf:Property ,
+ owl:DatatypeProperty ;
+ rdfs:range xsd:decimal ;
+ rdfs:label "maximum event load" ;
+ rdfs:comment "The maximum fraction of a cycle spent processing events." .
+
+ingen:minRunLoad
+ a rdf:Property ,
+ owl:DatatypeProperty ;
+ rdfs:range xsd:decimal ;
+ rdfs:label "minimum run load" ;
+ rdfs:comment "The minimum fraction of a cycle spent running DSP." .
+
+ingen:maxRunLoad
+ a rdf:Property ,
+ owl:DatatypeProperty ;
+ rdfs:range xsd:decimal ;
+ rdfs:label "maximum run load" ;
+ rdfs:comment "The maximum fraction of a cycle spent running DSP." .
+
+ingen:meanRunLoad
+ a rdf:Property ,
+ owl:DatatypeProperty ;
+ rdfs:range xsd:decimal ;
+ rdfs:label "mean run load" ;
+ rdfs:comment "The average fraction of a cycle spent running DSP." .
+
ingen:block
a rdf:Property ,
owl:ObjectProperty ;
@@ -220,3 +248,34 @@ ingen:BundleEnd
a rdfs:Class ;
rdfs:label "Bundle End" ;
rdfs:comment "The end of an undo transaction." .
+
+ingen:Option
+ a rdfs:Class ;
+ rdfs:subClassOf rdf:Property ;
+ rdfs:label "Ingen Option" .
+
+ingen:shortSwitch
+ a rdf:Property ,
+ owl:ObjectProperty ,
+ owl:FunctionalProperty ;
+ rdfs:domain ingen:Option ;
+ rdfs:range xsd:string ;
+ rdfs:label "short switch" ;
+ rdfs:comment "Single character switch for short command line argument." .
+
+ingen:longSwitch
+ a rdf:Property ,
+ owl:ObjectProperty ,
+ owl:FunctionalProperty ;
+ rdfs:domain ingen:Option ;
+ rdfs:range xsd:string ;
+ rdfs:label "long switch" ;
+ rdfs:comment "Lowercase, hyphenated switch for long command line argument." .
+
+ingen:numThreads
+ a rdf:Property ,
+ owl:ObjectProperty ,
+ ingen:Option ;
+ rdfs:label "number of threads" ;
+ ingen:shortSwitch "p" ;
+ ingen:longSwitch "threads" .