From 2e8a32f19193b9098ad52e0402dde30f01c32fd0 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Fri, 31 Jan 2003 04:35:34 +0000 Subject: "" svn path=/trunk/; revision=373 --- externals/grill/flext/config-pd-msvc.txt | 4 ++-- externals/grill/flext/readme.txt | 1 + externals/grill/flext/source/flsupport.h | 3 +++ externals/grill/vasp/readme.txt | 12 ++++++++++++ 4 files changed, 18 insertions(+), 2 deletions(-) (limited to 'externals') diff --git a/externals/grill/flext/config-pd-msvc.txt b/externals/grill/flext/config-pd-msvc.txt index 83c908d8..cf41c252 100644 --- a/externals/grill/flext/config-pd-msvc.txt +++ b/externals/grill/flext/config-pd-msvc.txt @@ -10,11 +10,11 @@ MSVCPATH="c:\programme\prog\microsoft visual studio\VC98" # where is the SndObj include directory? # (leave blank or comment out to disable SndObj support) -SNDOBJ=f:\prog\packs\sndobj\include +SNDOBJ=f:\prog\audio\sndobj\include # where is the STK include directory? # (leave blank or comment out to disable STK support) -STK=f:\prog\packs\stk\include +STK=f:\prog\audio\stk\include # where should flext libraries be built? # object files will be placed in subfolders diff --git a/externals/grill/flext/readme.txt b/externals/grill/flext/readme.txt index bcffda75..5eb82d7c 100644 --- a/externals/grill/flext/readme.txt +++ b/externals/grill/flext/readme.txt @@ -118,6 +118,7 @@ Version history: - pragma for Metrowerks compilers: enumsalwaysint on, bool on - MaxMSP: added assist string for attribute outlets - added new POSIX for ThrCond::TimedWait (but still have to find out when to enable it....) +- added CopySamples and ZeroSamples 0.4.1: - full port for Max@OSX diff --git a/externals/grill/flext/source/flsupport.h b/externals/grill/flext/source/flsupport.h index e2350d04..66f16dac 100644 --- a/externals/grill/flext/source/flsupport.h +++ b/externals/grill/flext/source/flsupport.h @@ -167,8 +167,11 @@ public: static t_atom *CopyList(int argc,const t_atom *argv); //! Copy a memory region static void CopyMem(void *dst,const void *src,int bytes); + static void CopySamples(t_sample *dst,const t_sample *src,int cnt) { CopyMem(dst,src,cnt*sizeof(t_sample)); } //! Zero a memory region static void ZeroMem(void *dst,int bytes); + static void ZeroSamples(t_sample *dst,int cnt) { ZeroMem(dst,cnt*sizeof(t_sample)); } + //! Sleep for an amount of time static void Sleep(double s); diff --git a/externals/grill/vasp/readme.txt b/externals/grill/vasp/readme.txt index 3819e7d8..da2ca914 100644 --- a/externals/grill/vasp/readme.txt +++ b/externals/grill/vasp/readme.txt @@ -91,3 +91,15 @@ o GCC: edit "config-pd-darwin.txt" and run "sh build-pd-darwin.sh" o Metrowerks CodeWarrior V6: edit vasp.cw project and build it +---------------------------------------------------------------------------- + + +HINTS: +====== + +- Click-free operation: All objects where it makes sense (e.g. transformation of data, vasp.!, etc.) + can be set to "detached mode" by sending a "detach 1" message (which is setting the detach attribute to 1). + The operation will then take place in a detached thread with lower priority. + Thus, longer operations will not disturb the dsp processing of the real-time engine. + + -- cgit v1.2.1