diff options
author | Brian Paul <[email protected]> | 2006-10-13 15:11:47 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-10-13 15:11:47 +0000 |
commit | 8a9b5518fb946462fe55a62c1da1cab94d6d12cc (patch) | |
tree | 465e076817531080be2c78d6550d14175ca8180d /src/mesa/swrast/s_readpix.c | |
parent | bf8647a58bcfcd2aacf91d2f7a4f1a55f1e1f138 (diff) |
s/GLuint/GLbitfield/
Diffstat (limited to 'src/mesa/swrast/s_readpix.c')
-rw-r--r-- | src/mesa/swrast/s_readpix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_readpix.c b/src/mesa/swrast/s_readpix.c index 78441bff38f..3b7fc3f0677 100644 --- a/src/mesa/swrast/s_readpix.c +++ b/src/mesa/swrast/s_readpix.c @@ -324,7 +324,7 @@ read_rgba_pixels( GLcontext *ctx, ASSERT(width <= MAX_WIDTH); if (ctx->Pixel.Convolution2DEnabled || ctx->Pixel.Separable2DEnabled) { - const GLuint transferOps = ctx->_ImageTransferState; + const GLbitfield transferOps = ctx->_ImageTransferState; GLfloat *dest, *src, *tmpImage, *convImage; GLint row; |