aboutsummaryrefslogtreecommitdiff
path: root/opengl
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2008-05-24 23:14:15 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2008-05-24 23:14:15 +0000
commita587a74821c155e281d2a6ce9a9a1d7b6a336fce (patch)
treec5ddd7ed4a1cb1a03a8e9d06d16bbe25c5b153df /opengl
parent921b949e82d9b140d69c4487b132fb4ac3185c2a (diff)
Checked in latest from Tom Schouten's darcs repository, which was checked in
19-Feb-2008. Changes are mostly the email address and URLs, but two new objects are also added: pdp_array2grey and pdp_grey2array for converting between Pd arrays and greyscale images. svn path=/trunk/externals/pdp/; revision=9899
Diffstat (limited to 'opengl')
-rw-r--r--opengl/include/pdp_3Dcontext.h2
-rw-r--r--opengl/include/pdp_mesh.h2
-rw-r--r--opengl/include/pdp_opengl.h2
-rw-r--r--opengl/include/pdp_texture.h2
-rw-r--r--opengl/modules/pdp_3d_color.c2
-rw-r--r--opengl/modules/pdp_3d_context.c2
-rw-r--r--opengl/modules/pdp_3d_dlist.c2
-rw-r--r--opengl/modules/pdp_3d_draw.c2
-rw-r--r--opengl/modules/pdp_3d_drawmesh.c2
-rw-r--r--opengl/modules/pdp_3d_for.c2
-rw-r--r--opengl/modules/pdp_3d_light.c2
-rw-r--r--opengl/modules/pdp_3d_push.c2
-rw-r--r--opengl/modules/pdp_3d_snap.c2
-rw-r--r--opengl/modules/pdp_3d_state.c2
-rw-r--r--opengl/modules/pdp_3d_subcontext.c2
-rw-r--r--opengl/modules/pdp_3d_view.c2
-rw-r--r--opengl/modules/pdp_3d_windowcontext.c2
-rw-r--r--opengl/system/pdp_3Dcontext_common.c2
-rw-r--r--opengl/system/pdp_3Dcontext_glx.c2
-rw-r--r--opengl/system/pdp_mesh.c2
-rw-r--r--opengl/system/pdp_opengl.c2
-rw-r--r--opengl/system/pdp_texture.c2
22 files changed, 22 insertions, 22 deletions
diff --git a/opengl/include/pdp_3Dcontext.h b/opengl/include/pdp_3Dcontext.h
index adef304..fb08974 100644
--- a/opengl/include/pdp_3Dcontext.h
+++ b/opengl/include/pdp_3Dcontext.h
@@ -1,6 +1,6 @@
/*
* pdp system module - 3d render context packet type
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/opengl/include/pdp_mesh.h b/opengl/include/pdp_mesh.h
index 8fd6dff..126b484 100644
--- a/opengl/include/pdp_mesh.h
+++ b/opengl/include/pdp_mesh.h
@@ -1,6 +1,6 @@
/*
* Pure Data Packet module. mesh object specification
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/opengl/include/pdp_opengl.h b/opengl/include/pdp_opengl.h
index c32735d..7e88a59 100644
--- a/opengl/include/pdp_opengl.h
+++ b/opengl/include/pdp_opengl.h
@@ -1,6 +1,6 @@
/*
* OpenGL Extension Module for pdp - Main header file
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/opengl/include/pdp_texture.h b/opengl/include/pdp_texture.h
index 7a40cdd..c3987bc 100644
--- a/opengl/include/pdp_texture.h
+++ b/opengl/include/pdp_texture.h
@@ -1,6 +1,6 @@
/*
* pdp system module - texture packet type
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/opengl/modules/pdp_3d_color.c b/opengl/modules/pdp_3d_color.c
index b237e9a..9adb2e5 100644
--- a/opengl/modules/pdp_3d_color.c
+++ b/opengl/modules/pdp_3d_color.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet module.
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/opengl/modules/pdp_3d_context.c b/opengl/modules/pdp_3d_context.c
index 9e9c08f..0ea398f 100644
--- a/opengl/modules/pdp_3d_context.c
+++ b/opengl/modules/pdp_3d_context.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet module.
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/opengl/modules/pdp_3d_dlist.c b/opengl/modules/pdp_3d_dlist.c
index 9f087e0..4605533 100644
--- a/opengl/modules/pdp_3d_dlist.c
+++ b/opengl/modules/pdp_3d_dlist.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet module.
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/opengl/modules/pdp_3d_draw.c b/opengl/modules/pdp_3d_draw.c
index a47db71..5ce09da 100644
--- a/opengl/modules/pdp_3d_draw.c
+++ b/opengl/modules/pdp_3d_draw.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet module.
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/opengl/modules/pdp_3d_drawmesh.c b/opengl/modules/pdp_3d_drawmesh.c
index cd2c973..68450fe 100644
--- a/opengl/modules/pdp_3d_drawmesh.c
+++ b/opengl/modules/pdp_3d_drawmesh.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet module.
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/opengl/modules/pdp_3d_for.c b/opengl/modules/pdp_3d_for.c
index 54b0a71..3b90916 100644
--- a/opengl/modules/pdp_3d_for.c
+++ b/opengl/modules/pdp_3d_for.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet module.
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/opengl/modules/pdp_3d_light.c b/opengl/modules/pdp_3d_light.c
index b0b4a92..f3e44da 100644
--- a/opengl/modules/pdp_3d_light.c
+++ b/opengl/modules/pdp_3d_light.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet module.
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/opengl/modules/pdp_3d_push.c b/opengl/modules/pdp_3d_push.c
index d5a45fb..a5eb076 100644
--- a/opengl/modules/pdp_3d_push.c
+++ b/opengl/modules/pdp_3d_push.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet module.
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/opengl/modules/pdp_3d_snap.c b/opengl/modules/pdp_3d_snap.c
index 2ee6d39..f3349c8 100644
--- a/opengl/modules/pdp_3d_snap.c
+++ b/opengl/modules/pdp_3d_snap.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet module.
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/opengl/modules/pdp_3d_state.c b/opengl/modules/pdp_3d_state.c
index d34ff94..7325f0b 100644
--- a/opengl/modules/pdp_3d_state.c
+++ b/opengl/modules/pdp_3d_state.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet module.
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/opengl/modules/pdp_3d_subcontext.c b/opengl/modules/pdp_3d_subcontext.c
index 11017e2..094e1b9 100644
--- a/opengl/modules/pdp_3d_subcontext.c
+++ b/opengl/modules/pdp_3d_subcontext.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet module.
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/opengl/modules/pdp_3d_view.c b/opengl/modules/pdp_3d_view.c
index 2317703..7ead4a4 100644
--- a/opengl/modules/pdp_3d_view.c
+++ b/opengl/modules/pdp_3d_view.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet module.
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/opengl/modules/pdp_3d_windowcontext.c b/opengl/modules/pdp_3d_windowcontext.c
index 4e7aa93..d35d317 100644
--- a/opengl/modules/pdp_3d_windowcontext.c
+++ b/opengl/modules/pdp_3d_windowcontext.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet module.
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/opengl/system/pdp_3Dcontext_common.c b/opengl/system/pdp_3Dcontext_common.c
index 86f5657..c8ea77b 100644
--- a/opengl/system/pdp_3Dcontext_common.c
+++ b/opengl/system/pdp_3Dcontext_common.c
@@ -1,7 +1,7 @@
/*
* OpenGL Extension Module for pdp - pbuffer packet implementation
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/opengl/system/pdp_3Dcontext_glx.c b/opengl/system/pdp_3Dcontext_glx.c
index f124686..d64ec6a 100644
--- a/opengl/system/pdp_3Dcontext_glx.c
+++ b/opengl/system/pdp_3Dcontext_glx.c
@@ -1,7 +1,7 @@
/*
* OpenGL Extension Module for pdp - opengl system stuff
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/opengl/system/pdp_mesh.c b/opengl/system/pdp_mesh.c
index b319d1e..a6940f1 100644
--- a/opengl/system/pdp_mesh.c
+++ b/opengl/system/pdp_mesh.c
@@ -1,6 +1,6 @@
/*
* Pure Data Packet module. mesh implementation
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/opengl/system/pdp_opengl.c b/opengl/system/pdp_opengl.c
index c8ede29..f3c82c1 100644
--- a/opengl/system/pdp_opengl.c
+++ b/opengl/system/pdp_opengl.c
@@ -1,7 +1,7 @@
/*
* OpenGL Extension Module for pdp - opengl system stuff
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/opengl/system/pdp_texture.c b/opengl/system/pdp_texture.c
index 8bc7b21..27e8ad8 100644
--- a/opengl/system/pdp_texture.c
+++ b/opengl/system/pdp_texture.c
@@ -1,6 +1,6 @@
/*
* OpenGL Extension Module for pdp - texture packet implementation
- * Copyright (c) by Tom Schouten <pdp@zzz.kotnet.org>
+ * Copyright (c) by Tom Schouten <tom@zwizwa.be>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by