mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-25 16:40:30 +01:00
Revert "i965: Advertise a line width of 40.0 on Cherryview and Skylake."
This reverts commitf3b709c0ac. The "dEQP-GLES3.functional.rasterization.fbo.rbo_multisample_4. interpolation.lines_wide" test appears to be broken on Cherryview when we expose line widths greater than 12.0. I'm not sure why. For now, just go back to the limits we used on older platforms. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=90902 Acked-by: Matt Turner <mattst88@gmail.com> (cherry picked from commit16658f426d) Nominated-by: Mark Janes <mark.a.janes@intel.com>
This commit is contained in:
parent
e5861dab85
commit
0639ada675
1 changed files with 1 additions and 5 deletions
|
|
@ -428,11 +428,7 @@ brw_initialize_context_constants(struct brw_context *brw)
|
|||
|
||||
ctx->Const.MinLineWidth = 1.0;
|
||||
ctx->Const.MinLineWidthAA = 1.0;
|
||||
if (brw->gen >= 9 || brw->is_cherryview) {
|
||||
ctx->Const.MaxLineWidth = 40.0;
|
||||
ctx->Const.MaxLineWidthAA = 40.0;
|
||||
ctx->Const.LineWidthGranularity = 0.125;
|
||||
} else if (brw->gen >= 6) {
|
||||
if (brw->gen >= 6) {
|
||||
ctx->Const.MaxLineWidth = 7.375;
|
||||
ctx->Const.MaxLineWidthAA = 7.375;
|
||||
ctx->Const.LineWidthGranularity = 0.125;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue