summaryrefslogtreecommitdiffstats
path: root/src/engine/ingen.lv2
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-02-24 23:54:37 +0000
committerDavid Robillard <d@drobilla.net>2010-02-24 23:54:37 +0000
commitc35f3f773e68c0e787a8436393475d3269c421c9 (patch)
treefb3847a90d94394f7ff22b3fad1ccb5c0f0da546 /src/engine/ingen.lv2
parent313af960a340f8539214d53252e3186fe3dc8f40 (diff)
downloadingen-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')
-rw-r--r--src/engine/ingen.lv2/ingen_lv2.cpp2
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;