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/enable.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/enable.c')
-rw-r--r-- | src/mesa/main/enable.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/main/enable.c b/src/mesa/main/enable.c index 5c36e050114..ce92a4222a7 100644 --- a/src/mesa/main/enable.c +++ b/src/mesa/main/enable.c @@ -439,7 +439,6 @@ _mesa_set_enable(struct gl_context *ctx, GLenum cap, GLboolean state) return; FLUSH_VERTICES(ctx, _NEW_LINE); ctx->Line.StippleFlag = state; - ctx->_TriangleCaps ^= DD_LINE_STIPPLE; break; case GL_INDEX_LOGIC_OP: if (ctx->API != API_OPENGL_COMPAT) |