summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2008-09-12 10:28:36 +0100
committerKeith Whitwell <keith@tungstengraphics.com>2008-09-12 10:28:36 +0100
commit1f135456795adfb1d739a6fb66ab9540aa79b461 (patch)
tree25997e5e9db90561d71a568958335a2882a43c61 /progs
parentaf74abab6b9a1e32a1cc5cac7e547b953dcee0ab (diff)
fp: put test name in window title, add run script
Diffstat (limited to 'progs')
-rw-r--r--progs/fp/fp-tri.c4
-rwxr-xr-xprogs/fp/run.sh7
2 files changed, 9 insertions, 2 deletions
diff --git a/progs/fp/fp-tri.c b/progs/fp/fp-tri.c
index cb991f803e..c07cfa2076 100644
--- a/progs/fp/fp-tri.c
+++ b/progs/fp/fp-tri.c
@@ -154,11 +154,11 @@ int main(int argc, char **argv)
glutInitWindowPosition(0, 0);
glutInitWindowSize(250, 250);
glutInitDisplayMode(GLUT_RGB | GLUT_SINGLE | GLUT_DEPTH);
- glutCreateWindow(argv[0]);
+ args(argc, argv);
+ glutCreateWindow(filename);
glutReshapeFunc(Reshape);
glutKeyboardFunc(Key);
glutDisplayFunc(Display);
- args(argc, argv);
Init();
if (show_fps) {
signal(SIGALRM, alarmhandler);
diff --git a/progs/fp/run.sh b/progs/fp/run.sh
new file mode 100755
index 0000000000..480f8108a3
--- /dev/null
+++ b/progs/fp/run.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+for i in *.txt ; do
+echo $i
+./fp-tri $i
+done
+