diff options
author | David Robillard <d@drobilla.net> | 2010-02-24 23:54:37 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-02-24 23:54:37 +0000 |
commit | c35f3f773e68c0e787a8436393475d3269c421c9 (patch) | |
tree | fb3847a90d94394f7ff22b3fad1ccb5c0f0da546 /src/engine/ingen.lv2/ingen_lv2.cpp | |
parent | 313af960a340f8539214d53252e3186fe3dc8f40 (diff) | |
download | ingen-c35f3f773e68c0e787a8436393475d3269c421c9.tar.gz ingen-c35f3f773e68c0e787a8436393475d3269c421c9.tar.bz2 ingen-c35f3f773e68c0e787a8436393475d3269c421c9.zip |
Tidy up Context and ProcessContext interfaces (ProcessContext only lives on as a useful type).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2487 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/ingen.lv2/ingen_lv2.cpp')
-rw-r--r-- | src/engine/ingen.lv2/ingen_lv2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/ingen.lv2/ingen_lv2.cpp b/src/engine/ingen.lv2/ingen_lv2.cpp index fb145c53..424df46c 100644 --- a/src/engine/ingen.lv2/ingen_lv2.cpp +++ b/src/engine/ingen.lv2/ingen_lv2.cpp @@ -48,7 +48,7 @@ struct IngenLV2Driver : public Ingen::Driver { bool is_activated() const { return true; } void run(uint32_t nframes) { - _context.set_time_slice(nframes, _frame_time, _frame_time + nframes); + _context.locate(_frame_time, nframes, 0); if (_root_patch) _root_patch->process(_context); _frame_time += nframes; |