diff options
author | Brian Paul <[email protected]> | 2005-10-28 13:09:23 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-10-28 13:09:23 +0000 |
commit | ca33e211659b36449a5b91e47328ab5554a4c665 (patch) | |
tree | 80b4f58e7e164d74b65248ad1907abead1b0e086 /src/glu/sgi/libutil | |
parent | 5222c58a68d51da1bc7d552b74b5cf1a2f667ccd (diff) |
silence a bunch of compiler warnings
Diffstat (limited to 'src/glu/sgi/libutil')
-rw-r--r-- | src/glu/sgi/libutil/quad.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/glu/sgi/libutil/quad.c b/src/glu/sgi/libutil/quad.c index 8d9bcdda643..e604539c82f 100644 --- a/src/glu/sgi/libutil/quad.c +++ b/src/glu/sgi/libutil/quad.c @@ -444,7 +444,7 @@ gluPartialDisk(GLUquadric *qobj, GLdouble innerRadius, GLfloat sintemp, costemp; GLfloat deltaRadius; GLfloat radiusLow, radiusHigh; - GLfloat texLow, texHigh; + GLfloat texLow = 0.0, texHigh = 0.0; GLfloat angleOffset; GLint slices2; GLint finish; @@ -713,8 +713,8 @@ gluSphere(GLUquadric *qobj, GLdouble radius, GLint slices, GLint stacks) GLfloat cosCache3b[CACHE_SIZE]; GLfloat angle; GLfloat zLow, zHigh; - GLfloat sintemp1, sintemp2, sintemp3, sintemp4; - GLfloat costemp1, costemp2, costemp3, costemp4; + GLfloat sintemp1, sintemp2, sintemp3 = 0.0, sintemp4 = 0.0; + GLfloat costemp1, costemp2 = 0.0, costemp3 = 0.0, costemp4 = 0.0; GLboolean needCache2, needCache3; GLint start, finish; |