fixed type checking error
authorBrian Paul <brian.paul@tungstengraphics.com>
Tue, 27 Jun 2000 04:32:16 +0000 (04:32 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Tue, 27 Jun 2000 04:32:16 +0000 (04:32 +0000)
src/mesa/main/drawpix.c

index f2bbd8a913f084257380bc0a38c98d302a202d2f..a7f309029d659b5a7c957a7085268d64b135f626 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: drawpix.c,v 1.22 2000/05/04 13:48:49 brianp Exp $ */
+/* $Id: drawpix.c,v 1.23 2000/06/27 04:32:16 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -512,11 +512,11 @@ draw_depth_pixels( GLcontext *ctx, GLint x, GLint y,
    GLuint ispan[MAX_WIDTH];
    GLint drawWidth = (width > MAX_WIDTH) ? MAX_WIDTH : width;
 
-   if (type != GL_UNSIGNED_BYTE
+   if (type != GL_BYTE
        && type != GL_UNSIGNED_BYTE
+       && type != GL_SHORT
        && type != GL_UNSIGNED_SHORT
-       && type != GL_UNSIGNED_SHORT
-       && type != GL_UNSIGNED_INT
+       && type != GL_INT
        && type != GL_UNSIGNED_INT
        && type != GL_FLOAT) {
       gl_error(ctx, GL_INVALID_ENUM, "glDrawPixels(type)");