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/debug.c | |
parent | 1b2fef5c28a40cd001598071e25b876ad4fccdd1 (diff) |
Removed DD_Z_NEVER.
Replaced SEPERATE with SEPARATE.
Renumbered _NEW_ flags.
Removed _NEW_COLORTABLE.
Diffstat (limited to 'src/mesa/main/debug.c')
-rw-r--r-- | src/mesa/main/debug.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mesa/main/debug.c b/src/mesa/main/debug.c index 2295916b320..f0e1e6ce2b9 100644 --- a/src/mesa/main/debug.c +++ b/src/mesa/main/debug.c @@ -1,4 +1,4 @@ -/* $Id: debug.c,v 1.9 2001/03/12 00:48:37 gareth Exp $ */ +/* $Id: debug.c,v 1.10 2001/03/29 16:50:31 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -55,7 +55,6 @@ void _mesa_print_state( const char *msg, GLuint state ) (state & _NEW_VIEWPORT) ? "ctx->Viewport, " : "", (state & _NEW_PACKUNPACK) ? "ctx->Pack/Unpack, " : "", (state & _NEW_ARRAY) ? "ctx->Array, " : "", - (state & _NEW_COLORTABLE) ? "ctx->{*}ColorTable, " : "", (state & _NEW_RENDERMODE) ? "ctx->RenderMode, " : "", (state & _NEW_BUFFERS) ? "ctx->Visual, ctx->DrawBuffer,, " : ""); } @@ -99,7 +98,7 @@ void _mesa_print_tri_caps( const char *name, GLuint flags ) (flags & DD_FEEDBACK) ? "feedback, " : "", (flags & DD_SELECT) ? "select, " : "", (flags & DD_FLATSHADE) ? "flat-shade, " : "", - (flags & DD_SEPERATE_SPECULAR) ? "seperate-specular, " : "", + (flags & DD_SEPARATE_SPECULAR) ? "separate-specular, " : "", (flags & DD_TRI_LIGHT_TWOSIDE) ? "tri-light-twoside, " : "", (flags & DD_TRI_UNFILLED) ? "tri-unfilled, " : "", (flags & DD_TRI_STIPPLE) ? "tri-stipple, " : "", |