diff options
author | Brian Paul <[email protected]> | 2001-03-29 16:50:31 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-03-29 16:50:31 +0000 |
commit | ee403ff0ba272f5be539ddc921d3fffb3d250cc4 (patch) | |
tree | edcd3441d7b0991ed48be40646195b40eb8109a5 /src/mesa/main/light.c | |
parent | 1b2fef5c28a40cd001598071e25b876ad4fccdd1 (diff) |
Removed DD_Z_NEVER.
Replaced SEPERATE with SEPARATE.
Renumbered _NEW_ flags.
Removed _NEW_COLORTABLE.
Diffstat (limited to 'src/mesa/main/light.c')
-rw-r--r-- | src/mesa/main/light.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/light.c b/src/mesa/main/light.c index ed449b9f58f..ecc6e877cce 100644 --- a/src/mesa/main/light.c +++ b/src/mesa/main/light.c @@ -1,4 +1,4 @@ -/* $Id: light.c,v 1.41 2001/03/12 00:48:38 gareth Exp $ */ +/* $Id: light.c,v 1.42 2001/03/29 16:50:32 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -425,9 +425,9 @@ _mesa_LightModelfv( GLenum pname, const GLfloat *params ) if ((ctx->Light.Enabled && ctx->Light.Model.ColorControl==GL_SEPARATE_SPECULAR_COLOR) || ctx->Fog.ColorSumEnabled) - ctx->_TriangleCaps |= DD_SEPERATE_SPECULAR; + ctx->_TriangleCaps |= DD_SEPARATE_SPECULAR; else - ctx->_TriangleCaps &= ~DD_SEPERATE_SPECULAR; + ctx->_TriangleCaps &= ~DD_SEPARATE_SPECULAR; break; default: |