diff options
author | Brian Paul <[email protected]> | 2000-08-21 14:22:24 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-08-21 14:22:24 +0000 |
commit | fa4525e289b475b928a7b2c4055af9dd7fe46600 (patch) | |
tree | 40eaaa3e4674a89779d1c7962c2b01e2eca86620 /src/mesa/main/context.c | |
parent | b1097f24a8410b623deb52069ad7e66bae35944c (diff) |
implemented new ImageTransferState bitmask
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 5adbeb87714..9933076797d 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.79 2000/07/19 20:58:59 brianp Exp $ */ +/* $Id: context.c,v 1.80 2000/08/21 14:22:24 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1036,7 +1036,6 @@ init_attrib_groups( GLcontext *ctx ) ctx->Pixel.BlueScale = 1.0; ctx->Pixel.AlphaBias = 0.0; ctx->Pixel.AlphaScale = 1.0; - ctx->Pixel.ScaleOrBiasRGBA = GL_FALSE; ctx->Pixel.DepthBias = 0.0; ctx->Pixel.DepthScale = 1.0; ctx->Pixel.IndexOffset = 0; @@ -1283,6 +1282,7 @@ init_attrib_groups( GLcontext *ctx ) ctx->StippleCounter = 0; ctx->NeedNormals = GL_FALSE; ctx->DoViewportMapping = GL_TRUE; + ctx->ImageTransferState = UPDATE_IMAGE_TRANSFER_STATE; ctx->NeedEyeCoords = GL_FALSE; ctx->NeedEyeNormals = GL_FALSE; |