From c802468d054b38e0c9f1c7f90e93643f9aef56ed Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Sat, 27 Jul 2024 14:42:33 -0700 Subject: [PATCH] nv2a/vk: Relax invalid surface compat check --- hw/xbox/nv2a/pgraph/vk/surface.c | 1 - 1 file changed, 1 deletion(-) diff --git a/hw/xbox/nv2a/pgraph/vk/surface.c b/hw/xbox/nv2a/pgraph/vk/surface.c index 5351e5602c..f6d69881e4 100644 --- a/hw/xbox/nv2a/pgraph/vk/surface.c +++ b/hw/xbox/nv2a/pgraph/vk/surface.c @@ -748,7 +748,6 @@ static bool check_invalid_surface_is_compatibile(SurfaceBinding *surface, return surface->host_fmt.vk_format == target->host_fmt.vk_format && surface->width == target->width && surface->height == target->height && - surface->pitch == target->pitch && surface->host_fmt.usage == target->host_fmt.usage; }