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/drawpix.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/drawpix.c')
-rw-r--r-- | src/mesa/main/drawpix.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mesa/main/drawpix.c b/src/mesa/main/drawpix.c index 4b2fbacd6ad..3e030ede61a 100644 --- a/src/mesa/main/drawpix.c +++ b/src/mesa/main/drawpix.c @@ -1,4 +1,4 @@ -/* $Id: drawpix.c,v 1.42 2000/10/29 19:02:23 brianp Exp $ */ +/* $Id: drawpix.c,v 1.43 2000/10/30 16:32:43 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -866,9 +866,6 @@ _mesa_DrawPixels( GLsizei width, GLsizei height, gl_update_state(ctx); } - if (ctx->ImageTransferState == UPDATE_IMAGE_TRANSFER_STATE) - _mesa_update_image_transfer_state(ctx); - x = (GLint) (ctx->Current.RasterPos[0] + 0.5F); y = (GLint) (ctx->Current.RasterPos[1] + 0.5F); |