mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
add commentary
This commit is contained in:
parent
8533b8244f
commit
1d4494961b
1 changed files with 5 additions and 1 deletions
|
|
@ -183,7 +183,7 @@ LV2PluginUI::output_update()
|
||||||
if (!_inst) {
|
if (!_inst) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* output ports (values set by DSP) need propagating to GUI */
|
/* output ports (values set by DSP) need propagating to GUI */
|
||||||
|
|
||||||
uint32_t nports = _output_ports.size();
|
uint32_t nports = _output_ports.size();
|
||||||
|
|
@ -193,6 +193,10 @@ LV2PluginUI::output_update()
|
||||||
suil_instance_port_event ((SuilInstance*)_inst, index, 4, 0, &val);
|
suil_instance_port_event ((SuilInstance*)_inst, index, 4, 0, &val);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Input ports marked for update because the control value changed
|
||||||
|
since the last redisplay.
|
||||||
|
*/
|
||||||
|
|
||||||
for (Updates::iterator i = _updates.begin(); i != _updates.end(); ++i) {
|
for (Updates::iterator i = _updates.begin(); i != _updates.end(); ++i) {
|
||||||
float val = _lv2->get_parameter (*i);
|
float val = _lv2->get_parameter (*i);
|
||||||
/* push current value to the GUI */
|
/* push current value to the GUI */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue