diff options
author | Brian Paul <[email protected]> | 2000-09-08 21:44:55 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-09-08 21:44:55 +0000 |
commit | 7f7b205259b228f81442f89e8318829737b08db6 (patch) | |
tree | 37fbd611954861ddf89bf7935e6bdaff8cb4d973 /src/mesa/main/state.c | |
parent | 48c6a6ecd2b94d73317f1579193d98101566217a (diff) |
removed ctx->Driver.Dither function
Diffstat (limited to 'src/mesa/main/state.c')
-rw-r--r-- | src/mesa/main/state.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mesa/main/state.c b/src/mesa/main/state.c index e9f68398a49..9d95264cbec 100644 --- a/src/mesa/main/state.c +++ b/src/mesa/main/state.c @@ -1,4 +1,4 @@ -/* $Id: state.c,v 1.25 2000/09/08 21:28:04 brianp Exp $ */ +/* $Id: state.c,v 1.26 2000/09/08 21:44:55 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -885,9 +885,6 @@ void gl_update_state( GLcontext *ctx ) if (ctx->NewState & (NEW_RASTER_OPS | NEW_TEXTURE_ENABLE)) { update_fog_mode(ctx); update_rasterflags(ctx); - if (ctx->Driver.Dither) { - (*ctx->Driver.Dither)( ctx, ctx->Color.DitherFlag ); - } /* update scissor region */ ctx->DrawBuffer->Xmin = 0; |