silenced ininitialized var warnings
authorBrian Paul <brian.paul@tungstengraphics.com>
Thu, 21 Oct 1999 12:45:03 +0000 (12:45 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Thu, 21 Oct 1999 12:45:03 +0000 (12:45 +0000)
src/mesa/main/teximage.c

index 632ef04c44c2a69c4173c70d997a734cb0038cda..a5d3ef97a57b062fee62d1d4fe062d92919b4cd4 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: teximage.c,v 1.6 1999/10/19 20:36:20 brianp Exp $ */
+/* $Id: teximage.c,v 1.7 1999/10/21 12:45:03 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -563,6 +563,7 @@ image_to_texture( GLcontext *ctx, const struct gl_image *image,
                      /* a paletted texture */
                      GLint index = ((GLubyte*)image->Data)[pixel];
                      red = index;
+                     green = blue = alpha = 0;  /* silence compiler warnings */
                   }
                   else {
                      /* convert color index to RGBA */
@@ -623,6 +624,7 @@ image_to_texture( GLcontext *ctx, const struct gl_image *image,
                   alpha = ((GLubyte*) image->Data)[pixel*2+1];
                   break;
               default:
+                 red = green = blue = alpha = 0;
                  gl_problem(ctx,"Bad format (2) in image_to_texture");
                  return NULL;
             }
@@ -706,6 +708,7 @@ image_to_texture( GLcontext *ctx, const struct gl_image *image,
                      /* a paletted texture */
                      GLint index = (GLint) ((GLfloat*) image->Data)[pixel];
                      red = index;
+                     green = blue = alpha = 0;  /* silence compiler warning */
                   }
                   else {
                      GLint shift = ctx->Pixel.IndexShift;