isl: allow CCS on single sampled TILE64 surfaces

Signed-off-by: Rohan Garg <rohan.garg@intel.com>
Reviewed-by: Nanley Chery <nanley.g.chery@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23030>
This commit is contained in:
Rohan Garg 2023-05-10 14:30:16 +02:00 committed by Marge Bot
parent afb63443a0
commit 57209a0c7a

View file

@ -3128,10 +3128,6 @@ isl_surf_supports_ccs(const struct isl_device *dev,
surf->tiling != ISL_TILING_4 &&
!isl_tiling_is_64(surf->tiling))
return false;
/* TODO: Handle single-sampled Tile64. */
if (surf->samples == 1 && isl_tiling_is_64(surf->tiling))
return false;
} else {
/* ISL_GFX_VER(dev) < 12 */
if (surf->samples > 1)