mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 05:08:08 +02:00
radv: disable stippledBresenhamLines on GFX9
Some CTS fail on Vega10 but work on Raven. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8242>
This commit is contained in:
parent
ff2601ffec
commit
ef06f1bb03
1 changed files with 4 additions and 1 deletions
|
|
@ -1365,7 +1365,10 @@ void radv_GetPhysicalDeviceFeatures2(
|
|||
features->bresenhamLines = true;
|
||||
features->smoothLines = false;
|
||||
features->stippledRectangularLines = false;
|
||||
features->stippledBresenhamLines = true;
|
||||
/* FIXME: Some stippled Bresenham CTS fails on Vega10
|
||||
* but work on Raven.
|
||||
*/
|
||||
features->stippledBresenhamLines = pdevice->rad_info.chip_class != GFX9;
|
||||
features->stippledSmoothLines = false;
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue