diff options
author | Brian Paul <[email protected]> | 2001-06-26 01:32:48 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-06-26 01:32:48 +0000 |
commit | 8c2f6c5059a60d845716277973c826f4069926e6 (patch) | |
tree | 75f91539198cc4b27464469231ca0eb734dc5abc /src/mesa/main/context.c | |
parent | 657323bf03a575bf40cff83119f201a9dcd1478e (diff) |
added GL_IBM_rasterpos_clip extension
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 63c30f2ee5d..444789a817e 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.143 2001/06/13 14:56:14 brianp Exp $ */ +/* $Id: context.c,v 1.144 2001/06/26 01:32:48 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1141,6 +1141,7 @@ init_attrib_groups( GLcontext *ctx ) ctx->Transform.MatrixMode = GL_MODELVIEW; ctx->Transform.Normalize = GL_FALSE; ctx->Transform.RescaleNormals = GL_FALSE; + ctx->Transform.RasterPositionUnclipped = GL_FALSE; for (i=0;i<MAX_CLIP_PLANES;i++) { ctx->Transform.ClipEnabled[i] = GL_FALSE; ASSIGN_4V( ctx->Transform.EyeUserPlane[i], 0.0, 0.0, 0.0, 0.0 ); |