mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
lua bindings to test strict i/o
This commit is contained in:
parent
edaeaf57ba
commit
c49d6fdb20
1 changed files with 4 additions and 0 deletions
|
|
@ -236,6 +236,8 @@ LuaBindings::common (lua_State* L)
|
|||
.addFunction ("n_inputs", &Route::n_inputs)
|
||||
.addFunction ("n_outputs", &Route::n_outputs)
|
||||
.addFunction ("set_comment", &Route::set_comment)
|
||||
.addFunction ("strict_io", &Route::strict_io)
|
||||
.addFunction ("set_strict_io", &Route::set_strict_io)
|
||||
.endClass ()
|
||||
|
||||
.deriveWSPtrClass <Track, Route> ("Track")
|
||||
|
|
@ -361,6 +363,8 @@ LuaBindings::common (lua_State* L)
|
|||
.addFunction ("plugin", &PluginInsert::plugin)
|
||||
.addFunction ("activate", &PluginInsert::activate)
|
||||
.addFunction ("deactivate", &PluginInsert::deactivate)
|
||||
.addFunction ("strict_io_configured", &PluginInsert::strict_io_configured)
|
||||
.addFunction ("set_strict_io", &PluginInsert::set_strict_io)
|
||||
.endClass ()
|
||||
|
||||
.deriveWSPtrClass <AutomationControl, Evoral::Control> ("AutomationControl")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue