From: Brian Paul Date: Tue, 13 Feb 2001 23:58:38 +0000 (+0000) Subject: fixed an assertion X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=88c5ceb6500d6cb442b4e675f0d7928ddd99b1cf;p=mesa.git fixed an assertion --- diff --git a/src/mesa/swrast/s_buffers.c b/src/mesa/swrast/s_buffers.c index bff5da00886..c64bdccb3e6 100644 --- a/src/mesa/swrast/s_buffers.c +++ b/src/mesa/swrast/s_buffers.c @@ -1,4 +1,4 @@ -/* $Id: s_buffers.c,v 1.4 2001/01/24 00:04:59 brianp Exp $ */ +/* $Id: s_buffers.c,v 1.5 2001/02/13 23:58:38 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -123,7 +123,8 @@ clear_color_buffer(GLcontext *ctx) } else { /* Color index mode */ - ASSERT(ctx->Color.IndexMask == ~0); + ASSERT((ctx->Color.IndexMask & ((1 << ctx->Visual.indexBits) - 1)) + == ((1 << ctx->Visual.indexBits) - 1)); if (ctx->Visual.indexBits == 8) { /* 8-bit clear */ GLubyte span[MAX_WIDTH];