aboutsummaryrefslogtreecommitdiffstats
path: root/src/jalv.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2016-09-16 18:26:01 +0800
committerDavid Robillard <d@drobilla.net>2016-09-16 18:26:01 +0800
commit701f67947d415feb416cfab83938380b063d6624 (patch)
treef117e4eda04e4ecab71bfc2731945208828d5c81 /src/jalv.c
parente076d9c31b4dd5e11f856aeeb634d18f1ba33b12 (diff)
downloadjalv-701f67947d415feb416cfab83938380b063d6624.tar.gz
jalv-701f67947d415feb416cfab83938380b063d6624.tar.bz2
jalv-701f67947d415feb416cfab83938380b063d6624.zip
Use cached URIs and fix pprops:rangeSteps nonsense
Diffstat (limited to 'src/jalv.c')
-rw-r--r--src/jalv.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/jalv.c b/src/jalv.c
index 02fecf3..92b5e17 100644
--- a/src/jalv.c
+++ b/src/jalv.c
@@ -1124,10 +1124,13 @@ main(int argc, char** argv)
jalv.nodes.lv2_name = lilv_new_uri(world, LV2_CORE__name);
jalv.nodes.lv2_reportsLatency = lilv_new_uri(world, LV2_CORE__reportsLatency);
jalv.nodes.lv2_sampleRate = lilv_new_uri(world, LV2_CORE__sampleRate);
+ jalv.nodes.lv2_symbol = lilv_new_uri(world, LV2_CORE__symbol);
jalv.nodes.lv2_toggled = lilv_new_uri(world, LV2_CORE__toggled);
jalv.nodes.midi_MidiEvent = lilv_new_uri(world, LV2_MIDI__MidiEvent);
jalv.nodes.pg_group = lilv_new_uri(world, LV2_PORT_GROUPS__group);
jalv.nodes.pprops_logarithmic = lilv_new_uri(world, LV2_PORT_PROPS__logarithmic);
+ jalv.nodes.pprops_notOnGUI = lilv_new_uri(world, LV2_PORT_PROPS__notOnGUI);
+ jalv.nodes.pprops_rangeSteps = lilv_new_uri(world, LV2_PORT_PROPS__rangeSteps);
jalv.nodes.pset_Preset = lilv_new_uri(world, LV2_PRESETS__Preset);
jalv.nodes.pset_bank = lilv_new_uri(world, LV2_PRESETS__bank);
jalv.nodes.rdfs_comment = lilv_new_uri(world, LILV_NS_RDFS "comment");