diff options
author | Brian Paul <[email protected]> | 2000-04-04 15:14:10 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-04-04 15:14:10 +0000 |
commit | 7e67fb41fb54e050f6983b4de09ed3a317d6148f (patch) | |
tree | 810a196fa33056afcc65f91300e165c5d69b98f5 /src/mesa/main/context.c | |
parent | 941dcc797e1a6317808c1ec43476817286d576ba (diff) |
more GL_HP_occlusion_test work
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 92077533126..ca95e430c0b 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.52 2000/03/31 01:05:51 brianp Exp $ */ +/* $Id: context.c,v 1.53 2000/04/04 15:14:10 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1276,6 +1276,7 @@ static void init_attrib_groups( GLcontext *ctx ) ctx->CatchSignals = GL_TRUE; ctx->OcclusionResult = GL_FALSE; + ctx->OcclusionResultSaved = GL_FALSE; /* For debug/development only */ ctx->NoRaster = getenv("MESA_NO_RASTER") ? GL_TRUE : GL_FALSE; |