summaryrefslogtreecommitdiffstats
path: root/ingen
diff options
context:
space:
mode:
Diffstat (limited to 'ingen')
-rw-r--r--ingen/EngineBase.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/ingen/EngineBase.hpp b/ingen/EngineBase.hpp
index 1b44e89d..177e8b20 100644
--- a/ingen/EngineBase.hpp
+++ b/ingen/EngineBase.hpp
@@ -41,8 +41,11 @@ public:
Initialise the engine for local use (e.g. without a Jack driver).
@param sample_rate Audio sampling rate in Hz.
@param block_length Audio block length (i.e. buffer size) in frames.
+ @param seq_size Sequence buffer size in bytes.
*/
- virtual void init(double sample_rate, uint32_t block_length) = 0;
+ virtual void init(double sample_rate,
+ uint32_t block_length,
+ size_t seq_size) = 0;
/**
Activate the engine.