diff options
author | Brian Paul <[email protected]> | 1999-09-17 12:27:01 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 1999-09-17 12:27:01 +0000 |
commit | ecaf1a0865e24d4f3f82cf076c54c033f68a4914 (patch) | |
tree | bbd805b0766616499a62fd92c57bb3bf7ef70cdf /progs/demos/stex3d.c | |
parent | 1bf28c46c2d4d3f2d0a502e45abfa66d37afe733 (diff) |
silenced some warnings
Diffstat (limited to 'progs/demos/stex3d.c')
-rw-r--r-- | progs/demos/stex3d.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/progs/demos/stex3d.c b/progs/demos/stex3d.c index 7c478c79b41..2a35ca161f5 100644 --- a/progs/demos/stex3d.c +++ b/progs/demos/stex3d.c @@ -1,4 +1,4 @@ -/* $Id: stex3d.c,v 1.1 1999/08/19 00:55:40 jtg Exp $ */ +/* $Id: stex3d.c,v 1.2 1999/09/17 12:27:01 brianp Exp $ */ /*----------------------------- * stex3d.c GL example of the mesa 3d-texture extention to simulate procedural @@ -17,8 +17,11 @@ /* * $Log: stex3d.c,v $ - * Revision 1.1 1999/08/19 00:55:40 jtg - * Initial revision + * Revision 1.2 1999/09/17 12:27:01 brianp + * silenced some warnings + * + * Revision 1.1.1.1 1999/08/19 00:55:40 jtg + * Imported sources * * Revision 3.1 1998/06/09 01:53:49 brianp * main() should return an int @@ -401,6 +404,8 @@ void cleanEverything(void) void KeyHandler( unsigned char key, int x, int y ) { + (void) x; + (void) y; switch(key) { case 27: case 'q': |