mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-08 14:45:43 +01:00
Set rate and blocksize for multi-instance VSTs
This commit is contained in:
parent
38e47c2f5f
commit
126dd02c85
3 changed files with 6 additions and 0 deletions
|
|
@ -63,6 +63,8 @@ LXVSTPlugin::LXVSTPlugin (const LXVSTPlugin &other)
|
|||
other.add_state (root);
|
||||
set_state (*root, Stateful::loading_state_version);
|
||||
delete root;
|
||||
|
||||
set_plugin (_state->plugin);
|
||||
}
|
||||
|
||||
LXVSTPlugin::~LXVSTPlugin ()
|
||||
|
|
|
|||
|
|
@ -63,6 +63,8 @@ MacVSTPlugin::MacVSTPlugin (const MacVSTPlugin &other)
|
|||
other.add_state (root);
|
||||
set_state (*root, Stateful::loading_state_version);
|
||||
delete root;
|
||||
|
||||
set_plugin (_state->plugin);
|
||||
}
|
||||
|
||||
MacVSTPlugin::~MacVSTPlugin ()
|
||||
|
|
|
|||
|
|
@ -62,6 +62,8 @@ WindowsVSTPlugin::WindowsVSTPlugin (const WindowsVSTPlugin &other)
|
|||
other.add_state (root);
|
||||
set_state (*root, Stateful::loading_state_version);
|
||||
delete root;
|
||||
|
||||
set_plugin (_state->plugin);
|
||||
}
|
||||
|
||||
WindowsVSTPlugin::~WindowsVSTPlugin ()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue