summaryrefslogtreecommitdiff
path: root/libs/ardour/session.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-08-07 17:27:01 +0200
committerRobin Gareus <robin@gareus.org>2019-08-07 17:40:23 +0200
commit3243bf591cca8f31708412d7c4e89755af5204a4 (patch)
treeb47cd88bf8b3b852c9c91dd5e4c61f06dbe4c659 /libs/ardour/session.cc
parent6bdf5cb0d7037ea38fb2b6ca15cfb47720d4917b (diff)
Add method to graphviz plot the process-graph
Diffstat (limited to 'libs/ardour/session.cc')
-rw-r--r--libs/ardour/session.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc
index 584c5cfb4d..71468c2a10 100644
--- a/libs/ardour/session.cc
+++ b/libs/ardour/session.cc
@@ -6482,6 +6482,11 @@ Session::nstripables (bool with_monitor) const
return rv;
}
+bool
+Session::plot_process_graph (std::string const& file_name) const {
+ return _process_graph ? _process_graph->plot (file_name) : false;
+}
+
void
Session::add_automation_list(AutomationList *al)
{