diff options
author | Keith Whitwell <[email protected]> | 1999-09-19 23:43:02 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 1999-09-19 23:43:02 +0000 |
commit | 5a437d588975ec0e241a2bf7cc4ce3785cb476bd (patch) | |
tree | e6cf1e6822ddd7cc4781ae7871d7fe8072e8ab9d /src/mesa/main/attrib.c | |
parent | c6569511103235fd29a89ea6dd0c21913805b1d2 (diff) |
Cleaning up
Diffstat (limited to 'src/mesa/main/attrib.c')
-rw-r--r-- | src/mesa/main/attrib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/attrib.c b/src/mesa/main/attrib.c index c4dae95739b..80aee7b8c0f 100644 --- a/src/mesa/main/attrib.c +++ b/src/mesa/main/attrib.c @@ -1,4 +1,4 @@ -/* $Id: attrib.c,v 1.3 1999/09/18 20:41:22 keithw Exp $ */ +/* $Id: attrib.c,v 1.4 1999/09/19 23:43:02 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -492,6 +492,7 @@ void gl_PopAttrib( GLcontext* ctx ) } TEST_AND_UPDATE(ctx->Light.ColorMaterialEnabled, enable->ColorMaterial, GL_COLOR_MATERIAL); TEST_AND_UPDATE(ctx->Polygon.CullFlag, enable->CullFace, GL_CULL_FACE); + TEST_AND_UPDATE(ctx->Depth.Test, enable->DepthTest, GL_DEPTH_TEST); TEST_AND_UPDATE(ctx->Color.DitherFlag, enable->Dither, GL_DITHER); TEST_AND_UPDATE(ctx->Fog.Enabled, enable->Fog, GL_FOG); TEST_AND_UPDATE(ctx->Light.Enabled, enable->Lighting, GL_LIGHTING); |