diff options
author | Brian Paul <[email protected]> | 2000-06-27 17:04:43 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-06-27 17:04:43 +0000 |
commit | 02e8a035934a7400d0194687061107bdaa1bba77 (patch) | |
tree | ab0b06c533e6f6fb2d409995f5b01423f29db105 /progs/demos/paltex.c | |
parent | 9e7f9b3e99cf4963e3bc684b5f9fc095be059a82 (diff) |
fixed compiler warnings
Diffstat (limited to 'progs/demos/paltex.c')
-rw-r--r-- | progs/demos/paltex.c | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/progs/demos/paltex.c b/progs/demos/paltex.c index 3b5cd277a97..6ffac28c1ed 100644 --- a/progs/demos/paltex.c +++ b/progs/demos/paltex.c @@ -1,30 +1,14 @@ -/* $Id: paltex.c,v 1.2 1999/11/02 15:09:04 brianp Exp $ */ +/* $Id: paltex.c,v 1.3 2000/06/27 17:04:43 brianp Exp $ */ /* * Paletted texture demo. Written by Brian Paul. * This program is in the public domain. */ -/* - * $Log: paltex.c,v $ - * Revision 1.2 1999/11/02 15:09:04 brianp - * new texture image, cleaned-up code - * - * Revision 1.1.1.1 1999/08/19 00:55:40 jtg - * Imported sources - * - * Revision 3.1 1999/03/28 18:20:49 brianp - * minor clean-up - * - * Revision 3.0 1998/02/14 18:42:29 brianp - * initial rev - * - */ - - #include <stdio.h> #include <stdlib.h> #include <math.h> +#define GL_GLEXT_LEGACY #include <GL/glut.h> |