aboutsummaryrefslogtreecommitdiff
path: root/externals/grill
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2002-12-13 04:35:41 +0000
committerThomas Grill <xovo@users.sourceforge.net>2002-12-13 04:35:41 +0000
commit04d3091862f2288c0195fa58e39bfe3fc71213a1 (patch)
tree20dbfcd6bc2c6a754ab3b813a0e101a41ce227f3 /externals/grill
parent41086e91d04b3c5f10fdf054260e90c0970e5ac6 (diff)
""
svn path=/trunk/; revision=298
Diffstat (limited to 'externals/grill')
-rw-r--r--externals/grill/flext/readme.txt3
-rw-r--r--externals/grill/vasp/changes.txt1
-rw-r--r--externals/grill/vasp/source/obj_split.cpp2
-rw-r--r--externals/grill/vasp/source/obj_sync.cpp2
-rw-r--r--externals/grill/vasp/todo.txt2
5 files changed, 8 insertions, 2 deletions
diff --git a/externals/grill/flext/readme.txt b/externals/grill/flext/readme.txt
index 3bd1594e..4a83e225 100644
--- a/externals/grill/flext/readme.txt
+++ b/externals/grill/flext/readme.txt
@@ -35,6 +35,9 @@ Package files:
> for PD you need the pd source code (which is most likely part of the distribution)
> for Max/MSP you will also need the Max/MSP SDK (and for threading the GUSI library)
+> if you choose to compile with SndObj support you will need the respective library
+> download from: http://www.may.ie/academic/music/musictec/SndObj/main.html
+
----------------------------------------------------------------------------
The package should at least compile (and is tested) with the following compilers:
diff --git a/externals/grill/vasp/changes.txt b/externals/grill/vasp/changes.txt
index e0ecafd3..26d0043d 100644
--- a/externals/grill/vasp/changes.txt
+++ b/externals/grill/vasp/changes.txt
@@ -13,6 +13,7 @@ Version history:
- ADD: vasp.shift,vasp.xshift - attribute "fill"
- ADD: vasp.tilt,vasp.xtilt - attributes "fill","inter"
- ADD: vasp.offset=,vasp.frames= - attributes "dir","slope"
+- CHANGE: update m_method_ virtual functions of same objects
0.1.1:
- FIX: bug in resize of immediate buffers
diff --git a/externals/grill/vasp/source/obj_split.cpp b/externals/grill/vasp/source/obj_split.cpp
index 5cb40889..04eb3eea 100644
--- a/externals/grill/vasp/source/obj_split.cpp
+++ b/externals/grill/vasp/source/obj_split.cpp
@@ -133,7 +133,7 @@ public:
for(I i = 0; i < cnt-1; ++i) if(vi[i]) { delete vi[i]; vi[i] = NULL; }
}
- virtual bool m_method_(I inlet,const t_symbol *s,I argc,t_atom *argv)
+ virtual bool m_method_(I inlet,const t_symbol *s,I argc,const t_atom *argv)
{
if(inlet > 0 && s == sym_vasp) {
if(vi[inlet-1]) delete vi[inlet-1];
diff --git a/externals/grill/vasp/source/obj_sync.cpp b/externals/grill/vasp/source/obj_sync.cpp
index 6dcd1bd2..9d6e3610 100644
--- a/externals/grill/vasp/source/obj_sync.cpp
+++ b/externals/grill/vasp/source/obj_sync.cpp
@@ -98,7 +98,7 @@ public:
for(I i = 0; i < CntIn(); ++i) flags[i] = false;
}
- virtual bool m_method_(I inlet,const t_symbol *s,I argc,t_atom *argv)
+ virtual bool m_method_(I inlet,const t_symbol *s,I argc,const t_atom *argv)
{
if(inlet > 0 && (!vasponly || s == sym_vasp)) {
Vasp *a = new Vasp(argc,argv);
diff --git a/externals/grill/vasp/todo.txt b/externals/grill/vasp/todo.txt
index be35393d..5f946924 100644
--- a/externals/grill/vasp/todo.txt
+++ b/externals/grill/vasp/todo.txt
@@ -38,6 +38,8 @@ objects:
bugs:
---------------------
+- vasp.join doesn't like length -1
+
tests:
---------------------