diff options
author | David Robillard <d@drobilla.net> | 2008-05-03 17:27:00 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-05-03 17:27:00 +0000 |
commit | 9dd89e3a4b9d9f0bfb408c827358f8e97c12373b (patch) | |
tree | cd6db99dfac1fac9745f2313920e80f1fdcc6195 /src/slv2_internal.h | |
parent | 572832bfd010ee82717ea0217b125404d11e5a16 (diff) | |
download | lilv-9dd89e3a4b9d9f0bfb408c827358f8e97c12373b.tar.gz lilv-9dd89e3a4b9d9f0bfb408c827358f8e97c12373b.tar.bz2 lilv-9dd89e3a4b9d9f0bfb408c827358f8e97c12373b.zip |
Add slv2_plugin_get_port_ranges.
Use slv2_plugin_get_port_ranges in lv2_jack_host and lv2_inspect (significant performance improvement for plugins with lots of ports).
git-svn-id: http://svn.drobilla.net/lad/slv2@1193 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/slv2_internal.h')
-rw-r--r-- | src/slv2_internal.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/slv2_internal.h b/src/slv2_internal.h index d38daa4..753867e 100644 --- a/src/slv2_internal.h +++ b/src/slv2_internal.h @@ -72,6 +72,9 @@ struct _SLV2Plugin { SLV2Plugin slv2_plugin_new(SLV2World world, SLV2Value uri, librdf_uri* bundle_uri, librdf_uri* binary_uri); void slv2_plugin_load(SLV2Plugin p); void slv2_plugin_free(SLV2Plugin plugin); +void slv2_plugin_get_port_float_values(SLV2Plugin p, + const char* qname, + float* values); librdf_query_results* slv2_plugin_query(SLV2Plugin plugin, const char* sparql_str); |