From 84906b5777d6748c09dd5ca56169aa3366d13c71 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 2 Jan 2007 02:51:41 +0000 Subject: Initial work on dynamic (Jack) buffer resizing (still unworking). git-svn-id: http://svn.drobilla.net/lad/ingen@229 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/Port.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/libs/engine/Port.h') diff --git a/src/libs/engine/Port.h b/src/libs/engine/Port.h index 273ff690..90dbdd00 100644 --- a/src/libs/engine/Port.h +++ b/src/libs/engine/Port.h @@ -64,6 +64,9 @@ public: DataType type() const { return _type; } size_t buffer_size() const { return _buffer_size; } + virtual void set_buffer_size(size_t size) = 0; + virtual void connect_buffers() = 0; + protected: Port(Node* const node, const string& name, size_t index, size_t poly, DataType type, size_t buffer_size); -- cgit v1.2.1