mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-26 19:50:37 +02:00
iris: restrict TessellationDistributionLevel for Wa_16025857284
Signed-off-by: Tapani Pälli <tapani.palli@intel.com> Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33864>
This commit is contained in:
parent
1674cb3665
commit
288f932b78
1 changed files with 4 additions and 1 deletions
|
|
@ -5251,7 +5251,10 @@ iris_store_tes_state(const struct intel_device_info *devinfo,
|
|||
STATIC_ASSERT(TEDMODE_OFF == 0);
|
||||
|
||||
#if GFX_VER >= 20
|
||||
te.TessellationDistributionLevel = TEDLEVEL_REGION;
|
||||
if (intel_needs_workaround(devinfo, 16025857284))
|
||||
te.TessellationDistributionLevel = TEDLEVEL_PATCH;
|
||||
else
|
||||
te.TessellationDistributionLevel = TEDLEVEL_REGION;
|
||||
#else
|
||||
te.TessellationDistributionLevel = TEDLEVEL_PATCH;
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue