From 39103d2e20d998fe05e23a0d9332155fb865afe3 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 23 Jun 2000 20:28:30 +0000 Subject: [PATCH] fixed ColorMask test in update_rasterflags() --- src/mesa/main/state.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesa/main/state.c b/src/mesa/main/state.c index 1d04e23..b64eaa6 100644 --- a/src/mesa/main/state.c +++ b/src/mesa/main/state.c @@ -1,4 +1,4 @@ -/* $Id: state.c,v 1.16 2000/06/12 15:31:20 brianp Exp $ */ +/* $Id: state.c,v 1.17 2000/06/23 20:28:30 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -846,7 +846,7 @@ static void update_rasterflags( GLcontext *ctx ) ctx->RasterMask |= MULTI_DRAW_BIT; ctx->TriangleCaps |= DD_MULTIDRAW; } - else if (ctx->Visual->RGBAflag && ctx->Color.ColorMask==0) { + else if (ctx->Visual->RGBAflag && *((GLuint *) ctx->Color.ColorMask) == 0) { /* all RGBA channels disabled */ ctx->RasterMask |= MULTI_DRAW_BIT; ctx->TriangleCaps |= DD_MULTIDRAW; -- 2.7.4