diff options
author | Roland Scheidegger <[email protected]> | 2010-11-08 21:53:11 +0100 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2010-11-10 17:24:42 +0100 |
commit | aad65fa112754074d24d0b5a8397db2663dc9454 (patch) | |
tree | f3bdaaee69440104bcbf1347961c47f1da4528e4 /src/mesa/main/debug.c | |
parent | c7192ab11f7e34fdfe17d36d089260c6703ddfa8 (diff) |
mesa: remove unneeded DD_POINT_SIZE and DD_LINE_WIDTH tricaps
DD_POINT_SIZE was broken for quite some time, and the only driver (r200) relying
on this no longer needs it.
Both DD_POINT_SIZE and DD_LINE_WIDTH have no users left outside of debugging
output, hence instead of fixing DD_POINT_SIZE setting just drop both of them -
there was a plan to remove tricaps flags entirely at some point.
Diffstat (limited to 'src/mesa/main/debug.c')
-rw-r--r-- | src/mesa/main/debug.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/main/debug.c b/src/mesa/main/debug.c index a7e65f8d3aa..faee336add2 100644 --- a/src/mesa/main/debug.c +++ b/src/mesa/main/debug.c @@ -133,9 +133,7 @@ _mesa_print_tri_caps( const char *name, GLuint flags ) (flags & DD_TRI_SMOOTH) ? "tri-smooth, " : "", (flags & DD_LINE_SMOOTH) ? "line-smooth, " : "", (flags & DD_LINE_STIPPLE) ? "line-stipple, " : "", - (flags & DD_LINE_WIDTH) ? "line-wide, " : "", (flags & DD_POINT_SMOOTH) ? "point-smooth, " : "", - (flags & DD_POINT_SIZE) ? "point-size, " : "", (flags & DD_POINT_ATTEN) ? "point-atten, " : "", (flags & DD_TRI_CULL_FRONT_BACK) ? "cull-all, " : "" ); |