lavapipe: ignore another yuv format.

Since these were added to generic translation, lavapipe has
been annoyed.

Cc: mesa-stable
Reviewed-by: Roland Scheidegger <sroland@vmware.com>
Acked-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23486>
This commit is contained in:
Dave Airlie 2023-06-07 12:05:44 +10:00 committed by Marge Bot
parent da54b57888
commit d99dca86ce
2 changed files with 3 additions and 4 deletions

View file

@ -2,6 +2,3 @@
# Likely fixed by VK-GL-CTS a3ac66a77e14 ("Zero initialize XFB counter buffer")
dEQP-VK.rasterization.provoking_vertex.transform_feedback.first.line_strip_with_adjacency,Fail
dEQP-VK.rasterization.provoking_vertex.transform_feedback.per_pipeline.triangle_strip_with_adjacency,Fail
# New CTS failures in 1.3.5.0
dEQP-VK.api.info.format_properties.g10x6_b10x6r10x6_2plane_420_unorm_3pack16,Fail

View file

@ -668,7 +668,9 @@ lvp_vk_format_to_pipe_format(VkFormat format)
format == VK_FORMAT_G16_B16_R16_3PLANE_422_UNORM ||
format == VK_FORMAT_G16_B16R16_2PLANE_422_UNORM ||
format == VK_FORMAT_G16_B16_R16_3PLANE_444_UNORM ||
format == VK_FORMAT_D16_UNORM_S8_UINT)
format == VK_FORMAT_D16_UNORM_S8_UINT ||
format == VK_FORMAT_R10X6G10X6_UNORM_2PACK16 ||
format == VK_FORMAT_G10X6_B10X6R10X6_2PLANE_420_UNORM_3PACK16)
return PIPE_FORMAT_NONE;
return vk_format_to_pipe_format(format);