diff options
Diffstat (limited to 'src/mesa/main/histogram.c')
-rw-r--r-- | src/mesa/main/histogram.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/main/histogram.c b/src/mesa/main/histogram.c index 2e3f103f25..115c087022 100644 --- a/src/mesa/main/histogram.c +++ b/src/mesa/main/histogram.c @@ -1,4 +1,4 @@ -/* $Id: histogram.c,v 1.1 2000/11/10 18:06:14 brianp Exp $ */ +/* $Id: histogram.c,v 1.2 2000/11/10 18:31:04 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -746,7 +746,7 @@ _mesa_Histogram(GLenum target, GLsizei width, GLenum internalFormat, GLboolean s ctx->Histogram.LuminanceSize = 0xffffffff; } - ctx->NewState |= _NEW_IMAGING; + ctx->NewState |= _NEW_PIXEL; } @@ -772,7 +772,7 @@ _mesa_Minmax(GLenum target, GLenum internalFormat, GLboolean sink) } ctx->MinMax.Sink = sink; - ctx->NewState |= _NEW_IMAGING; + ctx->NewState |= _NEW_PIXEL; } @@ -800,7 +800,7 @@ _mesa_ResetHistogram(GLenum target) ctx->Histogram.Count[i][3] = 0; } - ctx->NewState |= _NEW_IMAGING; + ctx->NewState |= _NEW_PIXEL; } @@ -824,5 +824,5 @@ _mesa_ResetMinmax(GLenum target) ctx->MinMax.Min[GCOMP] = 1000; ctx->MinMax.Max[GCOMP] = -1000; ctx->MinMax.Min[BCOMP] = 1000; ctx->MinMax.Max[BCOMP] = -1000; ctx->MinMax.Min[ACOMP] = 1000; ctx->MinMax.Max[ACOMP] = -1000; - ctx->NewState |= _NEW_IMAGING; + ctx->NewState |= _NEW_PIXEL; } |