diff options
author | Brian Paul <[email protected]> | 2000-10-30 16:32:42 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-10-30 16:32:42 +0000 |
commit | 9499e017b7e05411a32b3e4fa94885eaec0d7277 (patch) | |
tree | 5fcb3ec3bc037e24e652aeebb8c37f97aab7becf /src/mesa/main/pixel.c | |
parent | caef4a35d602669f742524757bef3c63f0c164a8 (diff) |
Removed UPDATE_IMAGE_TRANSFER_STATE, use _NEW_PIXEL flag instead.
More minor GLchan changes.
Silence some compiler warnings in cva.[ch]
Diffstat (limited to 'src/mesa/main/pixel.c')
-rw-r--r-- | src/mesa/main/pixel.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/mesa/main/pixel.c b/src/mesa/main/pixel.c index 4cd73efbf9d..a7787b667ae 100644 --- a/src/mesa/main/pixel.c +++ b/src/mesa/main/pixel.c @@ -1,4 +1,4 @@ -/* $Id: pixel.c,v 1.17 2000/10/30 13:32:01 keithw Exp $ */ +/* $Id: pixel.c,v 1.18 2000/10/30 16:32:43 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -632,7 +632,6 @@ _mesa_PixelTransferf( GLenum pname, GLfloat param ) } /* signal to recompute the bitmask */ - ctx->ImageTransferState = UPDATE_IMAGE_TRANSFER_STATE; ctx->NewState |= _NEW_PIXEL; } @@ -1063,10 +1062,10 @@ _mesa_map_ci8_to_rgba( const GLcontext *ctx, GLuint n, const GLubyte index[], GLuint gmask = ctx->Pixel.MapItoGsize - 1; GLuint bmask = ctx->Pixel.MapItoBsize - 1; GLuint amask = ctx->Pixel.MapItoAsize - 1; - const GLfloat *rMap = ctx->Pixel.MapItoR8; - const GLfloat *gMap = ctx->Pixel.MapItoG8; - const GLfloat *bMap = ctx->Pixel.MapItoB8; - const GLfloat *aMap = ctx->Pixel.MapItoA8; + const GLfloat *rMap = ctx->Pixel.MapItoR; + const GLfloat *gMap = ctx->Pixel.MapItoG; + const GLfloat *bMap = ctx->Pixel.MapItoB; + const GLfloat *aMap = ctx->Pixel.MapItoA; GLuint i; for (i=0;i<n;i++) { rgba[i][RCOMP] = FLOAT_TO_CHAN(rMap[index[i] & rmask]); |