diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2000-05-04 13:48:49 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2000-05-04 13:48:49 +0000 |
commit | 1a1cf7ed75d799bbda34399ddab7949b8c06686e (patch) | |
tree | bc750639db55bb2da0db4d81b13ab03c97653974 /src/mesa/main/drawpix.c | |
parent | f8825778121b2fe8c012b0ecb2c098865cbe84cb (diff) |
implemented GL_EXT_histogram extension
Diffstat (limited to 'src/mesa/main/drawpix.c')
-rw-r--r-- | src/mesa/main/drawpix.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/drawpix.c b/src/mesa/main/drawpix.c index 38ffcc8546..f2bbd8a913 100644 --- a/src/mesa/main/drawpix.c +++ b/src/mesa/main/drawpix.c @@ -1,4 +1,4 @@ -/* $Id: drawpix.c,v 1.21 2000/04/18 14:32:10 brianp Exp $ */ +/* $Id: drawpix.c,v 1.22 2000/05/04 13:48:49 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -123,6 +123,7 @@ simple_DrawPixels( GLcontext *ctx, GLint x, GLint y, && !ctx->Pixel.ColorTableEnabled && !ctx->Pixel.PostColorMatrixColorTableEnabled && !ctx->Pixel.MinMaxEnabled + && !ctx->Pixel.HistogramEnabled && ctx->Pixel.IndexShift==0 && ctx->Pixel.IndexOffset==0 && ctx->Pixel.MapColorFlag==0 && ctx->Texture.ReallyEnabled == 0 |