glDrawPixels w/ format=GL_COLOR_INDEX was broken

This commit is contained in:
Brian Paul 2000-02-08 23:42:14 +00:00
parent 99e89283d6
commit bab8f790ae
1 changed files with 4 additions and 4 deletions

View File

@ -1,10 +1,10 @@
/* $Id: drawpix.c,v 1.11 2000/02/02 19:17:57 brianp Exp $ */
/* $Id: drawpix.c,v 1.12 2000/02/08 23:42:14 brianp Exp $ */
/*
* Mesa 3-D graphics library
* Version: 3.3
*
* Copyright (C) 1999 Brian Paul All Rights Reserved.
* Copyright (C) 1999-2000 Brian Paul All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@ -703,9 +703,9 @@ _mesa_DrawPixels( GLsizei width, GLsizei height,
break;
case GL_COLOR_INDEX:
if (ctx->Visual->RGBAflag)
draw_index_pixels(ctx, x, y, width, height, type, pixels);
else
draw_rgba_pixels(ctx, x,y, width, height, format, type, pixels);
else
draw_index_pixels(ctx, x, y, width, height, type, pixels);
break;
case GL_RED:
case GL_GREEN: