diff options
author | Brian Paul <[email protected]> | 2013-04-16 19:06:22 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-04-17 11:59:39 -0600 |
commit | 55b2033f0a4896a7930469711a052083c15edd3f (patch) | |
tree | 9442f593f4252c6d9791d8ea18eebcb73d1a5f76 /src/mesa/main/debug.c | |
parent | c1c5d689c5a8cc3ae72b81391be30f5296cc2993 (diff) |
mesa: remove DD_SEPARATE_SPECULAR flag
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/main/debug.c')
-rw-r--r-- | src/mesa/main/debug.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/main/debug.c b/src/mesa/main/debug.c index 4f3d3f64a38..7dd108c25d5 100644 --- a/src/mesa/main/debug.c +++ b/src/mesa/main/debug.c @@ -100,10 +100,9 @@ void _mesa_print_tri_caps( const char *name, GLuint flags ) { _mesa_debug(NULL, - "%s: (0x%x) %s%s%s%s%s%s%s%s%s\n", + "%s: (0x%x) %s%s%s%s%s%s%s%s\n", name, flags, - (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, " : "", |