From e2697d717f95e0ebf4e5b5d8fb686d12bb230413 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tapani=20P=C3=A4lli?= Date: Thu, 18 Sep 2025 12:50:14 +0300 Subject: [PATCH] intel/blorp: add restriction for gfx12 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: mesa-stable Signed-off-by: Tapani Pälli Reviewed-by: Lionel Landwerlin Part-of: --- src/intel/blorp/blorp_blit.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/intel/blorp/blorp_blit.c b/src/intel/blorp/blorp_blit.c index 312e455764a..a3daf620d02 100644 --- a/src/intel/blorp/blorp_blit.c +++ b/src/intel/blorp/blorp_blit.c @@ -2480,6 +2480,12 @@ blorp_copy_supports_blitter(struct blorp_context *blorp, if (devinfo->ver < 12) return false; + if (devinfo->verx10 == 120 && + (src_surf->tiling != ISL_TILING_LINEAR || + dst_surf->tiling != ISL_TILING_LINEAR)) { + return false; + } + if (dst_surf->samples > 1 || src_surf->samples > 1) return false;