diff options
author | Brian Paul <[email protected]> | 2013-04-16 19:06:22 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-04-17 11:59:40 -0600 |
commit | 8ac8ae83609d5d5f28037ccd5b81ce5e40db2d33 (patch) | |
tree | b7f68f0c73f16a1e38af931ab86e1c3187447a3f /src/mesa/main/state.c | |
parent | 55b2033f0a4896a7930469711a052083c15edd3f (diff) |
mesa: remove DD_LINE_STIPPLE flag
For the i915 driver, make it a local macro.
v2: use conditional operator instead of bit shifting
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/main/state.c')
-rw-r--r-- | src/mesa/main/state.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mesa/main/state.c b/src/mesa/main/state.c index e5e98dc5ee5..6578b375e8b 100644 --- a/src/mesa/main/state.c +++ b/src/mesa/main/state.c @@ -353,14 +353,6 @@ update_tricaps(struct gl_context *ctx, GLbitfield new_state) } /* - * Lines - */ - if (1/*new_state & _NEW_LINE*/) { - if (ctx->Line.StippleFlag) - ctx->_TriangleCaps |= DD_LINE_STIPPLE; - } - - /* * Polygons */ if (1/*new_state & _NEW_POLYGON*/) { |