summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/i965/brw_wm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/drivers/i965/brw_wm.c')
-rw-r--r--src/gallium/drivers/i965/brw_wm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/i965/brw_wm.c b/src/gallium/drivers/i965/brw_wm.c
index 8589aa22a8..3c5a2dab7a 100644
--- a/src/gallium/drivers/i965/brw_wm.c
+++ b/src/gallium/drivers/i965/brw_wm.c
@@ -225,7 +225,8 @@ static void brw_wm_populate_key( struct brw_context *brw,
line_aa = AA_NEVER;
break;
case PIPE_PRIM_LINES:
- line_aa = AA_ALWAYS;
+ line_aa = (brw->curr.rast->templ.line_smooth ?
+ AA_ALWAYS : AA_NEVER);
break;
default:
line_aa = brw->curr.rast->unfilled_aa_line;