mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 02:50:16 +01:00
intel/blorp: add restriction for gfx12
Cc: mesa-stable Signed-off-by: Tapani Pälli <tapani.palli@intel.com> Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37731>
This commit is contained in:
parent
59815642eb
commit
e2697d717f
1 changed files with 6 additions and 0 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue