From 4066f05fe43fffd9a8984779a9994125709149e2 Mon Sep 17 00:00:00 2001 From: Lionel Landwerlin Date: Wed, 14 Jun 2023 12:31:19 +0300 Subject: [PATCH] anv: enable standard Y tiles We kept those tilings disabled up to know. Now that ISL has proper support for them, remove this. Signed-off-by: Lionel Landwerlin Reviewed-by: Nanley Chery Part-of: --- src/intel/vulkan/anv_image.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/intel/vulkan/anv_image.c b/src/intel/vulkan/anv_image.c index 085dab8..3d36e47 100644 --- a/src/intel/vulkan/anv_image.c +++ b/src/intel/vulkan/anv_image.c @@ -307,9 +307,6 @@ choose_isl_tiling_flags(const struct intel_device_info *devinfo, flags &= legacy_mask; } - /* We don't support Yf or Ys tiling yet */ - flags &= ~ISL_TILING_STD_Y_MASK; - assert(flags); return flags; -- 2.7.4