From b8827f17107c537f192c60eef0d7840ba1d2d3e8 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Mon, 12 Sep 2005 10:27:40 +0000 Subject: changed initialization functions accordingly minimal additions for buffers and exception handling change click modifier to shift (seems to work) small fixes for tutorial examples added flfeatures.h for compile-time version-specific feature detection added typed flext::NewAligned fixed severe Altivec bug adapted for pd-devel 0.39 - better handling of click callback slimmed object data structures update DSP methods for SndObj and STK classes - more compatible handling of attributes in patcher (hiding is now an option - define FLEXT_ATTRHIDE) better buffer checking svn path=/trunk/; revision=3537 --- externals/grill/flext/source/fldsp.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'externals/grill/flext/source/fldsp.h') diff --git a/externals/grill/flext/source/fldsp.h b/externals/grill/flext/source/fldsp.h index d9dbb1fe..19b4b3cb 100644 --- a/externals/grill/flext/source/fldsp.h +++ b/externals/grill/flext/source/fldsp.h @@ -54,9 +54,15 @@ public: //! returns array of input vectors (CntInSig() vectors) t_sample *const *InSig() const { return invecs; } + //! returns input vector + t_sample *InSig(int i) const { return invecs[i]; } + //! returns array of output vectors (CntOutSig() vectors) t_sample *const *OutSig() const { return outvecs; } + //! returns output vector + t_sample *OutSig(int i) const { return outvecs[i]; } + //! typedef describing a signal vector #if FLEXT_SYS == FLEXT_SYS_JMAX typedef fts_symbol_t t_signalvec; -- cgit v1.2.1