diff options
author | Brian Paul <[email protected]> | 2000-03-11 23:23:26 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-03-11 23:23:26 +0000 |
commit | 1b2ff69f468d609a88b1cd31041df2b81931816b (patch) | |
tree | 233ec4149c5b15bb7c348f207454ca4d9623128b /src/mesa/main/context.c | |
parent | 516b8363bbe8e625e8e773630772da950eff7d2a (diff) |
initial implementation of GL_HP_occlusion_test extension
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index b1d922f6515..64d236ee518 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.45 2000/03/06 17:03:03 brianp Exp $ */ +/* $Id: context.c,v 1.46 2000/03/11 23:23:26 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -864,6 +864,7 @@ static void init_attrib_groups( GLcontext *ctx ) ctx->Depth.Clear = 1.0; ctx->Depth.Func = GL_LESS; ctx->Depth.Mask = GL_TRUE; + ctx->Depth.OcclusionTest = GL_FALSE; /* Evaluators group */ ctx->Eval.Map1Color4 = GL_FALSE; @@ -1227,6 +1228,7 @@ static void init_attrib_groups( GLcontext *ctx ) ctx->ErrorValue = (GLenum) GL_NO_ERROR; ctx->CatchSignals = GL_TRUE; + ctx->OcclusionResult = GL_FALSE; /* For debug/development only */ ctx->NoRaster = getenv("MESA_NO_RASTER") ? GL_TRUE : GL_FALSE; |