From: Keith Whitwell Date: Sun, 15 Nov 2009 00:06:57 +0000 (-0800) Subject: i965g: restore check on line smooth state X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d03a1c2216635a1475172e6603a243348675fd6f;p=mesa.git i965g: restore check on line smooth state --- diff --git a/src/gallium/drivers/i965/brw_wm.c b/src/gallium/drivers/i965/brw_wm.c index 8589aa22a88..3c5a2dab7a1 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;