mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 17:30:12 +01:00
intel/isl: Use intel_needs_workaround() for MTL CCS WA
Also use parent WA number of 14017240301 instead of 14017353530. Reviewed-by: José Roberto de Souza <jose.souza@intel.com> Signed-off-by: Jordan Justen <jordan.l.justen@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22401>
This commit is contained in:
parent
23b45c5a29
commit
dbf19b76e8
1 changed files with 2 additions and 2 deletions
|
|
@ -876,8 +876,8 @@ bool
|
|||
isl_format_supports_ccs_e(const struct intel_device_info *devinfo,
|
||||
enum isl_format format)
|
||||
{
|
||||
/* Wa_14017353530: Disable compression on MTL until B0 */
|
||||
if (intel_device_info_is_mtl(devinfo) && devinfo->revision < 4)
|
||||
/* Disable compression on MTL until B0 */
|
||||
if (intel_needs_workaround(devinfo, 14017240301))
|
||||
return false;
|
||||
|
||||
/* Wa_22011186057: Disable compression on ADL-P A0 */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue