diff options
author | David Robillard <d@drobilla.net> | 2015-11-23 14:24:07 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2016-10-01 07:03:17 -0400 |
commit | 11b55676a510171a56975743fd752ccbcc170622 (patch) | |
tree | b36fce044d67e2c8f358170f207f2ec0926cb8a2 /src/server/GraphImpl.hpp | |
parent | 92d75b64d9f4cf9ca9caf3e1a0d3ad9819eb5481 (diff) | |
download | ingen-11b55676a510171a56975743fd752ccbcc170622.tar.gz ingen-11b55676a510171a56975743fd752ccbcc170622.tar.bz2 ingen-11b55676a510171a56975743fd752ccbcc170622.zip |
Add parallelism-aware graph traversal
Diffstat (limited to 'src/server/GraphImpl.hpp')
-rw-r--r-- | src/server/GraphImpl.hpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/server/GraphImpl.hpp b/src/server/GraphImpl.hpp index 7352da39..124614de 100644 --- a/src/server/GraphImpl.hpp +++ b/src/server/GraphImpl.hpp @@ -165,16 +165,6 @@ public: Raul::Array<PortImpl*>* external_ports() { return _ports; } void external_ports(Raul::Array<PortImpl*>* pa) { _ports = pa; } - /** Compile the graph into a version suitable for real-time execution. - * - * The CompiledGraph is a flat list that the graph will execute in order - * when its run() method is called. The returned object is newly allocated - * and owned by the caller. This function is non-realtime and does not - * affect processing, to take effect the returned object must be installed - * in the audio thread with set_compiled_graph(). - */ - CompiledGraph* compile(); - Raul::Array<PortImpl*>* build_ports_array(); /** Whether to run this graph's DSP bits in the audio thread */ |