diff options
author | Brian <[email protected]> | 2007-09-27 10:24:17 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-09-27 10:39:01 -0600 |
commit | ed6d5ff6f8fdd34aaaa126119dbd8e1e321859d8 (patch) | |
tree | fc96d0a93505aa755e0b0889b6f0d3f7273ffb5d /src/mesa/main/lines.c | |
parent | 4f9d29cd4e876cd202a7d3e81f6d91fc7f9625a2 (diff) |
Restore old _TriangleCaps code to fix Blender problem (bug 12164)
Diffstat (limited to 'src/mesa/main/lines.c')
-rw-r--r-- | src/mesa/main/lines.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/main/lines.c b/src/mesa/main/lines.c index 0c2dbf915a1..81d0d33abb4 100644 --- a/src/mesa/main/lines.c +++ b/src/mesa/main/lines.c @@ -56,6 +56,11 @@ _mesa_LineWidth( GLfloat width ) FLUSH_VERTICES(ctx, _NEW_LINE); ctx->Line.Width = width; + if (width != 1.0F) + ctx->_TriangleCaps |= DD_LINE_WIDTH; + else + ctx->_TriangleCaps &= ~DD_LINE_WIDTH; + if (ctx->Driver.LineWidth) ctx->Driver.LineWidth(ctx, width); } |