diff options
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 85a437947a..cfd0fcb927 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.125 2001/03/03 20:33:27 brianp Exp $ */ +/* $Id: context.c,v 1.126 2001/03/11 18:49:11 gareth Exp $ */ /* * Mesa 3-D graphics library @@ -1435,6 +1435,10 @@ _mesa_initialize_context( GLcontext *ctx, ctx->ExecPrefersFloat = GL_FALSE; ctx->SavePrefersFloat = GL_FALSE; + /* Neutral tnl module stuff */ + ctx->TnlModule.Current = NULL; + ctx->TnlModule.SwapCount = 0; + /* Z buffer stuff */ if (ctx->Visual.depthBits == 0) { /* Special case. Even if we don't have a depth buffer we need |