mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 22:49:13 +02:00
i965: Always set AALINEDISTANCE_TRUE on Sandybridge.
We set this unconditionally on every other platform. Zero (Manhattan)
isn't even listed as an option in the Sandybridge docs - only "true".
Reviewed-by: Plamena Manolova <plamena.manolova@intel.com>
Reviewed-by: Francisco Jerez <currojerez@riseup.net>
(cherry picked from commit 4878ab9bd4)
This commit is contained in:
parent
cfba0e166a
commit
70d5ca0363
1 changed files with 1 additions and 2 deletions
|
|
@ -286,7 +286,7 @@ upload_sf_state(struct brw_context *brw)
|
|||
|
||||
dw1 = GEN6_SF_SWIZZLE_ENABLE | num_outputs << GEN6_SF_NUM_OUTPUTS_SHIFT;
|
||||
dw2 = GEN6_SF_STATISTICS_ENABLE;
|
||||
dw3 = GEN6_SF_SCISSOR_ENABLE;
|
||||
dw3 = GEN6_SF_SCISSOR_ENABLE | GEN6_SF_LINE_AA_MODE_TRUE;
|
||||
dw4 = 0;
|
||||
|
||||
if (brw->sf.viewport_transform_enable)
|
||||
|
|
@ -365,7 +365,6 @@ upload_sf_state(struct brw_context *brw)
|
|||
}
|
||||
if (ctx->Line.SmoothFlag) {
|
||||
dw3 |= GEN6_SF_LINE_AA_ENABLE;
|
||||
dw3 |= GEN6_SF_LINE_AA_MODE_TRUE;
|
||||
dw3 |= GEN6_SF_LINE_END_CAP_WIDTH_1_0;
|
||||
}
|
||||
/* _NEW_MULTISAMPLE */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue