added format/type error check to draw_rgba_pixels()
authorBrian Paul <brian.paul@tungstengraphics.com>
Tue, 12 Sep 2000 21:09:24 +0000 (21:09 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Tue, 12 Sep 2000 21:09:24 +0000 (21:09 +0000)
src/mesa/main/drawpix.c

index 7cf7b0030f6709d30f81765ac768b65d391c209a..bfc4a59aa42597ec23e2aa288d3e2835bb01e309 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: drawpix.c,v 1.33 2000/09/08 21:28:04 brianp Exp $ */
+/* $Id: drawpix.c,v 1.34 2000/09/12 21:09:24 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -713,6 +713,11 @@ draw_rgba_pixels( GLcontext *ctx, GLint x, GLint y,
    GLfloat *convImage = NULL;
    GLuint transferOps = ctx->ImageTransferState;
 
+   if (!_mesa_is_legal_format_and_type(format, type)) {
+      gl_error(ctx, GL_INVALID_ENUM, "glDrawPixels(format or type)");
+      return;
+   }
+
    /* Try an optimized glDrawPixels first */
    if (fast_draw_pixels(ctx, x, y, width, height, format, type, pixels))
       return;