diff options
author | Brian Paul <[email protected]> | 2011-01-23 09:48:49 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-01-23 09:50:52 -0700 |
commit | fb7efb1b194831cc6cb0b69291949ac693f20f25 (patch) | |
tree | 1582539beef2c3e2f6ee2aa772d6d97216118d50 /src/mesa/main/accum.c | |
parent | f4dc24a0b5290b0bbfb254b3bc76d801371dd790 (diff) |
mesa: get rid of _NEW_ACCUM, clean-up _NEW_* #defines
The _NEW_ACCUM flag was only set when changing the accumulation
buffer clear color and never used anywhere. Reclaim that dirty bit.
Clean up the definitions of the other dirty bit flags.
Diffstat (limited to 'src/mesa/main/accum.c')
-rw-r--r-- | src/mesa/main/accum.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/main/accum.c b/src/mesa/main/accum.c index 940f398f023..6a83930a13d 100644 --- a/src/mesa/main/accum.c +++ b/src/mesa/main/accum.c @@ -51,7 +51,6 @@ _mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ) if (TEST_EQ_4V(tmp, ctx->Accum.ClearColor)) return; - FLUSH_VERTICES(ctx, _NEW_ACCUM); COPY_4FV( ctx->Accum.ClearColor, tmp ); } |