From e00ac11d4dd05c56584622dc2707bbdcfe4b2707 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 15 Sep 2005 05:00:45 +0000 Subject: Replace GLuint with GLbitfield where appropriate. Also replace GLuint with GLboolean in a few places. --- src/mesa/swrast/s_drawpix.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mesa/swrast/s_drawpix.c') diff --git a/src/mesa/swrast/s_drawpix.c b/src/mesa/swrast/s_drawpix.c index 709f9a13c7..29356ca4b6 100644 --- a/src/mesa/swrast/s_drawpix.c +++ b/src/mesa/swrast/s_drawpix.c @@ -812,8 +812,8 @@ draw_rgba_pixels( GLcontext *ctx, GLint x, GLint y, * General solution */ { - const GLuint interpMask = span.interpMask; - const GLuint arrayMask = span.arrayMask; + const GLbitfield interpMask = span.interpMask; + const GLbitfield arrayMask = span.arrayMask; GLint row, skipPixels = 0; /* if the span is wider than MAX_WIDTH we have to do it in chunks */ -- cgit v1.2.3