mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
Various optimisations to speed up rec-enable.
git-svn-id: svn://localhost/ardour2/branches/3.0@6227 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
4497db3f1a
commit
fddc11f556
18 changed files with 107 additions and 25 deletions
|
|
@ -55,6 +55,7 @@
|
|||
#include "ardour/route_group.h"
|
||||
#include "ardour/session.h"
|
||||
#include "ardour/session_playlist.h"
|
||||
#include "ardour/debug.h"
|
||||
#include "ardour/utils.h"
|
||||
#include "evoral/Parameter.hpp"
|
||||
|
||||
|
|
@ -2118,8 +2119,13 @@ RouteTimeAxisView::processor_menu_item_toggled (RouteTimeAxisView::ProcessorAuto
|
|||
}
|
||||
|
||||
void
|
||||
RouteTimeAxisView::processors_changed ()
|
||||
RouteTimeAxisView::processors_changed (RouteProcessorChange c)
|
||||
{
|
||||
if (c.type == RouteProcessorChange::MeterPointChange) {
|
||||
/* nothing to do if only the meter point has changed */
|
||||
return;
|
||||
}
|
||||
|
||||
using namespace Menu_Helpers;
|
||||
|
||||
for (list<ProcessorAutomationInfo*>::iterator i = processor_automation.begin(); i != processor_automation.end(); ++i) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue