mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-28 01:40:08 +01:00
init swrast->CurrentBuffer
This commit is contained in:
parent
f58826db57
commit
32d0d5aec4
1 changed files with 6 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: s_context.c,v 1.39 2002/10/04 17:37:46 brianp Exp $ */
|
||||
/* $Id: s_context.c,v 1.40 2002/10/11 17:50:59 brianp Exp $ */
|
||||
|
||||
/*
|
||||
* Mesa 3-D graphics library
|
||||
|
|
@ -507,6 +507,11 @@ _swrast_CreateContext( GLcontext *ctx )
|
|||
swrast->AllowVertexFog = GL_TRUE;
|
||||
swrast->AllowPixelFog = GL_TRUE;
|
||||
|
||||
if (ctx->Visual.doubleBufferMode)
|
||||
swrast->CurrentBuffer = BACK_LEFT_BIT;
|
||||
else
|
||||
swrast->CurrentBuffer = FRONT_LEFT_BIT;
|
||||
|
||||
/* Optimized Accum buffer */
|
||||
swrast->_IntegerAccumMode = GL_TRUE;
|
||||
swrast->_IntegerAccumScaler = 0.0;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue