- Rename some SFIZZ_ prefixed definitions where possible to permit some modules to be generic and be reused in other projects, keep project' information in the same place and more explicit - Fixed non-compliant code formatting
17 lines
684 B
Turtle
17 lines
684 B
Turtle
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
|
|
@prefix opts: <http://lv2plug.in/ns/ext/options#> .
|
|
@prefix ui: <http://lv2plug.in/ns/extensions/ui#> .
|
|
@prefix urid: <http://lv2plug.in/ns/ext/urid#> .
|
|
|
|
<@LV2_PLUGIN_URI@#ui>
|
|
lv2:extensionData ui:idleInterface ;
|
|
lv2:extensionData ui:showInterface ;
|
|
lv2:requiredFeature ui:idleInterface ;
|
|
lv2:optionalFeature ui:noUserResize ;
|
|
lv2:optionalFeature ui:resize ;
|
|
lv2:optionalFeature ui:parent ;
|
|
lv2:optionalFeature ui:touch ;
|
|
opts:supportedOption ui:scaleFactor ;
|
|
lv2:requiredFeature urid:map ;
|
|
lv2:requiredFeature urid:unmap ;
|
|
lv2:requiredFeature <http://lv2plug.in/ns/ext/instance-access> .
|