diff options
| -rw-r--r-- | src/mesa/swrast/s_accum.c | 6 | 
1 files changed, 1 insertions, 5 deletions
| diff --git a/src/mesa/swrast/s_accum.c b/src/mesa/swrast/s_accum.c index 2dd9ca6348..854e106b7f 100644 --- a/src/mesa/swrast/s_accum.c +++ b/src/mesa/swrast/s_accum.c @@ -130,11 +130,7 @@ _swrast_clear_accum_buffer( GLcontext *ctx, struct gl_renderbuffer *rb )     SWcontext *swrast = SWRAST_CONTEXT(ctx);     GLuint x, y, width, height; -   if (ctx->Visual.accumRedBits == 0) { -      /* No accumulation buffer! Not an error. */ -      return; -   } - +   /* No accumulation buffer! Not an error. */     if (!rb || !rb->Data)        return; | 
