aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/machina/Machine.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/machina/Machine.hpp')
-rw-r--r--src/engine/machina/Machine.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/engine/machina/Machine.hpp b/src/engine/machina/Machine.hpp
index 1a8f267..d65cec4 100644
--- a/src/engine/machina/Machine.hpp
+++ b/src/engine/machina/Machine.hpp
@@ -67,7 +67,7 @@ public:
// Audio context
void reset(MIDISink* sink, Raul::TimeStamp time);
- uint32_t run(Context& context, SPtr<UpdateBuffer> updates);
+ uint32_t run(Context& context, SPtr<Raul::RingBuffer> updates);
// Any context
inline Raul::TimeStamp time() const { return _time; }
@@ -86,13 +86,13 @@ private:
// Audio context
SPtr<Node> earliest_node() const;
- bool enter_node(Context& context,
- SPtr<Node> node,
- SPtr<UpdateBuffer> updates);
+ bool enter_node(Context& context,
+ SPtr<Node> node,
+ SPtr<Raul::RingBuffer> updates);
- void exit_node(Context& context,
- SPtr<Node> node,
- SPtr<UpdateBuffer> updates);
+ void exit_node(Context& context,
+ SPtr<Node> node,
+ SPtr<Raul::RingBuffer> updates);
static const size_t MAX_ACTIVE_NODES = 128;