mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 04:50:11 +01:00
intel/isl: Disable CCS on MTL until B0 (Wa_14017353530)
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com> Reviewed-by: Nanley Chery <nanley.g.chery@intel.com> Reviewed-by: Jianxun Zhang <jianxun.zhang@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20322>
This commit is contained in:
parent
6e33423a6f
commit
5df50292d6
1 changed files with 2 additions and 1 deletions
|
|
@ -876,7 +876,8 @@ bool
|
|||
isl_format_supports_ccs_e(const struct intel_device_info *devinfo,
|
||||
enum isl_format format)
|
||||
{
|
||||
if (intel_device_info_is_mtl(devinfo))
|
||||
/* Wa_14017353530: Disable compression on MTL until B0 */
|
||||
if (intel_device_info_is_mtl(devinfo) && devinfo->revision < 4)
|
||||
return false;
|
||||
|
||||
/* Wa_22011186057: Disable compression on ADL-P A0 */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue