mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 08:50:13 +01:00
minor stencil-related changes
This commit is contained in:
parent
b22ac10c1a
commit
c63a8693bb
1 changed files with 3 additions and 3 deletions
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: context.c,v 1.25 1999/12/02 20:33:06 brianp Exp $ */
|
||||
/* $Id: context.c,v 1.26 1999/12/04 21:23:17 brianp Exp $ */
|
||||
|
||||
/*
|
||||
* Mesa 3-D graphics library
|
||||
|
|
@ -872,9 +872,9 @@ static void initialize_context( GLcontext *ctx )
|
|||
ctx->Stencil.ZPassFunc = GL_KEEP;
|
||||
ctx->Stencil.ZFailFunc = GL_KEEP;
|
||||
ctx->Stencil.Ref = 0;
|
||||
ctx->Stencil.ValueMask = 0xff;
|
||||
ctx->Stencil.ValueMask = STENCIL_MAX;
|
||||
ctx->Stencil.Clear = 0;
|
||||
ctx->Stencil.WriteMask = 0xff;
|
||||
ctx->Stencil.WriteMask = STENCIL_MAX;
|
||||
|
||||
/* Texture group */
|
||||
ctx->Texture.CurrentUnit = 0; /* multitexture */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue