get rid of accum param
authorBrian <brian@i915.localnet.net>
Thu, 2 Aug 2007 19:38:38 +0000 (13:38 -0600)
committerBrian <brian@i915.localnet.net>
Thu, 2 Aug 2007 19:38:38 +0000 (13:38 -0600)
src/mesa/drivers/x11/xm_dd.c

index fec4f5d..87f8ede 100644 (file)
@@ -425,8 +425,7 @@ clear_buffers(GLcontext *ctx, GLbitfield buffers)
          GLboolean color = (buffers & (BUFFER_BIT_FRONT_LEFT | BUFFER_BIT_BACK_LEFT)) ? 1: 0;
          GLboolean depth = (buffers & BUFFER_BIT_DEPTH) ? 1 : 0;
          GLboolean stencil = (buffers & BUFFER_BIT_STENCIL) ? 1 : 0;
-         GLboolean accum = (buffers & BUFFER_BIT_ACCUM) ? 1 : 0;
-         st_clear(st, color, depth, stencil, accum);
+         st_clear(st, color, depth, stencil);
 #endif
       }
    }