anv: enable standard Y tiles
authorLionel Landwerlin <lionel.g.landwerlin@intel.com>
Wed, 14 Jun 2023 09:31:19 +0000 (12:31 +0300)
committerMarge Bot <emma+marge@anholt.net>
Fri, 1 Sep 2023 23:22:18 +0000 (23:22 +0000)
We kept those tilings disabled up to know. Now that ISL has proper
support for them, remove this.

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Nanley Chery <nanley.g.chery@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23620>

src/intel/vulkan/anv_image.c

index 085dab8..3d36e47 100644 (file)
@@ -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;