From 792e294572b33478b228013f68da205a0b74c93f Mon Sep 17 00:00:00 2001 From: Jordan Justen Date: Mon, 1 Feb 2021 13:16:30 -0800 Subject: [PATCH] isl: Enable compression with Tile4 Signed-off-by: Jordan Justen Reviewed-by: Lionel Landwerlin Part-of: --- src/intel/isl/isl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/isl/isl.c b/src/intel/isl/isl.c index 908259cccfe..07ab61b96ca 100644 --- a/src/intel/isl/isl.c +++ b/src/intel/isl/isl.c @@ -2204,7 +2204,7 @@ isl_surf_supports_ccs(const struct isl_device *dev, */ /* TODO: Handle the other tiling formats */ - if (surf->tiling != ISL_TILING_Y0) + if (surf->tiling != ISL_TILING_Y0 && surf->tiling != ISL_TILING_4) return false; } else { /* ISL_GFX_VER(dev) < 12 */