diff options
author | Keith Whitwell <[email protected]> | 1999-09-18 20:41:22 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 1999-09-18 20:41:22 +0000 |
commit | 1bf9dfaf5dea61e3d33a69b0a549be54ef6d74df (patch) | |
tree | ac7671bdd63c0de5bdc7e60af521b0fc4418238d /src/mesa/main/attrib.c | |
parent | 56b58668e86e6156555e36050df14b49faa14f31 (diff) |
Large patch:
- FX bug fixes.
- Polygon mode and edgeflag work properly.
- Clipping works with edgeflag.
- Driver.ReducedPrimitiveChange() callback so drivers
that implement lines & points as triangles can turn culling off
before rendering groups of these primitives.
- Cleaned up feedback & select primitives.
Diffstat (limited to 'src/mesa/main/attrib.c')
-rw-r--r-- | src/mesa/main/attrib.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/main/attrib.c b/src/mesa/main/attrib.c index 527cd2d8bb7..c4dae95739b 100644 --- a/src/mesa/main/attrib.c +++ b/src/mesa/main/attrib.c @@ -1,4 +1,4 @@ -/* $Id: attrib.c,v 1.2 1999/09/16 11:54:56 keithw Exp $ */ +/* $Id: attrib.c,v 1.3 1999/09/18 20:41:22 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -700,9 +700,9 @@ void gl_PopAttrib( GLcontext* ctx ) (*ctx->Driver.ClearStencil)( ctx, ctx->Stencil.Clear ); if (ctx->Driver.Enable) (*ctx->Driver.Enable)( ctx, GL_STENCIL_TEST, ctx->Stencil.Enabled ); -/* ctx->TriangleCaps &= ~DD_STENCIL; */ -/* if (ctx->Stencil.Enabled) */ -/* ctx->TriangleCaps |= DD_STENCIL; */ + ctx->TriangleCaps &= ~DD_STENCIL; + if (ctx->Stencil.Enabled) + ctx->TriangleCaps |= DD_STENCIL; break; case GL_TRANSFORM_BIT: |