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/context.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/context.c')
-rw-r--r-- | src/mesa/main/context.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 3268f55070c..26ef3c43dde 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.99 2000/10/30 13:32:00 keithw Exp $ */ +/* $Id: context.c,v 1.100 2000/10/30 16:32:43 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1341,7 +1341,7 @@ init_attrib_groups( GLcontext *ctx ) ctx->StippleCounter = 0; ctx->NeedNormals = GL_FALSE; ctx->DoViewportMapping = GL_TRUE; - ctx->ImageTransferState = UPDATE_IMAGE_TRANSFER_STATE; + ctx->ImageTransferState = 0; ctx->NeedEyeCoords = GL_FALSE; ctx->NeedEyeNormals = GL_FALSE; |