silence compiler warnings
authorBrian Paul <brian.paul@tungstengraphics.com>
Tue, 12 Feb 2002 16:07:47 +0000 (16:07 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Tue, 12 Feb 2002 16:07:47 +0000 (16:07 +0000)
progs/redbook/checker.c
progs/redbook/fog.c
progs/redbook/hello.c
progs/redbook/polyoff.c
progs/redbook/surface.c
progs/samples/select.c

index 4b76952..06cbae7 100644 (file)
@@ -42,6 +42,7 @@
  *  two rectangles.  This program clamps the texture, if
  *  the texture coordinates fall outside 0.0 and 1.0.
  */
+#include <stdlib.h>
 #include <GL/glut.h>
 
 /*     Create checkerboard texture     */
index 888ee13..7d13109 100644 (file)
@@ -60,9 +60,10 @@ selectFog(int mode)
         glFogf(GL_FOG_START, 1.0);
         glFogf(GL_FOG_END, 5.0);
        /* falls through */
+        mode = 0xfff;
     case GL_EXP2:
     case GL_EXP:
-        glFogi(GL_FOG_MODE, mode);
+       glFogiv(0xf/*GL_FOG_MODE*/, (int *) &mode);
        glutPostRedisplay();
        break;
     case 0:
@@ -190,7 +191,7 @@ main(int argc, char **argv)
     glutDisplayFunc(display);
     glutCreateMenu(selectFog);
     glutAddMenuEntry("Fog EXP", GL_EXP);
-    glutAddMenuEntry("Fog EXP2", GL_EXP2);
+    glutAddMenuEntry("Fog EXP2", /*GL_EXP2*/ 0xffff);
     glutAddMenuEntry("Fog LINEAR", GL_LINEAR);
     glutAddMenuEntry("Quit", 0);
     glutAttachMenu(GLUT_RIGHT_BUTTON);
index 4f644a4..fb3dae1 100644 (file)
@@ -39,6 +39,7 @@
  * hello.c
  * This is a simple, introductory OpenGL program.
  */
+#include <stdlib.h>
 #include <GL/glut.h>
 
 void display(void)
index ae7ec0b..2017b4d 100644 (file)
@@ -44,6 +44,7 @@
 #include <GL/glut.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 
 #ifdef GL_VERSION_1_1
 GLuint list;
@@ -149,7 +150,7 @@ static void Benchmark( float xdiff, float ydiff )
 {
    int startTime, endTime;
    int draws;
-   double seconds, fps, triPerSecond;
+   double seconds, fps;
 
    printf("Benchmarking...\n");
 
index 8ff1574..e33ce14 100644 (file)
@@ -41,6 +41,7 @@
  *  This program draws a NURBS surface in the shape of a
  *  symmetrical hill.
  */
+#include <stdlib.h>
 #include <GL/glut.h>
 
 GLfloat ctlpoints[4][4][3];
index 5a73a45..2c8f333 100644 (file)
@@ -174,7 +174,7 @@ static void DeleteTri(GLint h)
 static void GrowTri(GLint h)
 {
     float v[2];
-    float *oldV;
+    float *oldV = NULL;
     GLint i;
 
     v[0] = objects[h].v1[0] + objects[h].v2[0] + objects[h].v3[0];