diff options
Diffstat (limited to 'src/libs/engine/Patch.h')
-rw-r--r-- | src/libs/engine/Patch.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/libs/engine/Patch.h b/src/libs/engine/Patch.h index 55a2be83..76290c8f 100644 --- a/src/libs/engine/Patch.h +++ b/src/libs/engine/Patch.h @@ -98,21 +98,21 @@ public: /** Whether to run this patch's DSP bits in the audio thread */ bool enabled() const { return _process; } - void enable() { _process = true; } + void enable() { _process = true; } void disable(); size_t internal_poly() const { return _internal_poly; } private: - inline void build_process_order_recursive(Node* n, Raul::Array<Node*>* order) const; - - size_t _internal_poly; - Raul::Array<Node*>* _process_order; ///< Accessed in audio thread only - Raul::List<Connection*> _connections; ///< Accessed in audio thread only - Raul::List<Port*> _input_ports; ///< Accessed in preprocessing thread only - Raul::List<Port*> _output_ports; ///< Accessed in preprocessing thread only - Raul::List<Node*> _nodes; ///< Accessed in preprocessing thread only - bool _process; + inline void build_process_order_recursive(Node* n, Raul::Array<Node*>* order) const; + + size_t _internal_poly; + Raul::Array<Node*>* _process_order; ///< Accessed in audio thread only + Raul::List<Connection*> _connections; ///< Accessed in audio thread only + Raul::List<Port*> _input_ports; ///< Accessed in preprocessing thread only + Raul::List<Port*> _output_ports; ///< Accessed in preprocessing thread only + Raul::List<Node*> _nodes; ///< Accessed in preprocessing thread only + bool _process; }; |