diff options
author | David Robillard <d@drobilla.net> | 2008-07-29 05:50:52 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-07-29 05:50:52 +0000 |
commit | f0e920ab170569fc9eaf5858af2e9ae3e8d44993 (patch) | |
tree | 1e1fa0a7b2bfeb0e6ca4541c570f445fc4541ff0 /src/libs/engine/Buffer.hpp | |
parent | de58b508b28a42b072fb26d2633aa0af37ee7c0e (diff) | |
download | ingen-f0e920ab170569fc9eaf5858af2e9ae3e8d44993.tar.gz ingen-f0e920ab170569fc9eaf5858af2e9ae3e8d44993.tar.bz2 ingen-f0e920ab170569fc9eaf5858af2e9ae3e8d44993.zip |
Fix stateful port value setting stuff (trigger output ports on note/trigger/etc modules now work correctly).
git-svn-id: http://svn.drobilla.net/lad/ingen@1302 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/Buffer.hpp')
-rw-r--r-- | src/libs/engine/Buffer.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/engine/Buffer.hpp b/src/libs/engine/Buffer.hpp index 30180064..3e3f7563 100644 --- a/src/libs/engine/Buffer.hpp +++ b/src/libs/engine/Buffer.hpp @@ -46,8 +46,8 @@ public: /** Rewing (ie reset read pointer), but leave contents unchanged */ virtual void rewind() const = 0; - virtual void prepare_read(SampleCount nframes) = 0; - virtual void prepare_write(SampleCount nframes) = 0; + virtual void prepare_read(FrameTime start, SampleCount nframes) = 0; + virtual void prepare_write(FrameTime start, SampleCount nframes) = 0; bool is_joined() const { return (_joined_buf != NULL); } Buffer* joined_buffer() const { return _joined_buf; } |