diff options
author | Brian Paul <[email protected]> | 2002-03-27 15:49:27 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-03-27 15:49:27 +0000 |
commit | c02861778493ca65508e4dbbc2b907751811c845 (patch) | |
tree | 651005022568f0cdf9cc7e9fb9ba0f53174543c8 /src/mesa/swrast/s_blend.c | |
parent | e6f2b4174b988b88d341d18d2d12ff031e8f1eb2 (diff) |
fixed inequality in an assertion
Diffstat (limited to 'src/mesa/swrast/s_blend.c')
-rw-r--r-- | src/mesa/swrast/s_blend.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/swrast/s_blend.c b/src/mesa/swrast/s_blend.c index 52409cde972..05b38fd5807 100644 --- a/src/mesa/swrast/s_blend.c +++ b/src/mesa/swrast/s_blend.c @@ -1,4 +1,4 @@ -/* $Id: s_blend.c,v 1.13 2002/02/12 16:45:22 kschultz Exp $ */ +/* $Id: s_blend.c,v 1.14 2002/03/27 15:49:27 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -677,7 +677,7 @@ _mesa_blend_span( GLcontext *ctx, const struct sw_span *span, SWcontext *swrast = SWRAST_CONTEXT(ctx); GLchan framebuffer[MAX_WIDTH][4]; - ASSERT(span->end < MAX_WIDTH); + ASSERT(span->end <= MAX_WIDTH); ASSERT(span->arrayMask & SPAN_RGBA); ASSERT(!ctx->Color.ColorLogicOpEnabled); |