mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-23 03:00:37 +02:00
tu: Don't disable 2 10-bit formats
VK_FORMAT_R10X6_UNORM_PACK16 and VK_FORMAT_R10X6G10X6_UNORM_2PACK16 were previously disabled because they were failing some CTS tests. Re-enable them now as they are no longer causing crashes. Signed-off-by: Valentine Burley <valentine.burley@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30157>
This commit is contained in:
parent
9f1d1c4fc8
commit
b3842f9f41
1 changed files with 0 additions and 3 deletions
|
|
@ -31,9 +31,6 @@ enum pipe_format
|
|||
tu_vk_format_to_pipe_format(VkFormat vk_format)
|
||||
{
|
||||
switch (vk_format) {
|
||||
case VK_FORMAT_R10X6_UNORM_PACK16:
|
||||
case VK_FORMAT_R10X6G10X6_UNORM_2PACK16:
|
||||
return PIPE_FORMAT_NONE; /* These fail some CTS tests */
|
||||
case VK_FORMAT_G8B8G8R8_422_UNORM: /* YUYV */
|
||||
return PIPE_FORMAT_R8G8_R8B8_UNORM;
|
||||
case VK_FORMAT_B8G8R8G8_422_UNORM: /* UYVY */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue