From e743e739a9b957f66a9ae3d8065a77a34d7e236d Mon Sep 17 00:00:00 2001 From: Rhys Perry Date: Thu, 4 Aug 2022 18:08:38 +0100 Subject: [PATCH] radv: enable 64-bit vertex formats Signed-off-by: Rhys Perry Reviewed-by: Samuel Pitoiset Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/6956 Part-of: --- src/amd/vulkan/radv_formats.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/amd/vulkan/radv_formats.c b/src/amd/vulkan/radv_formats.c index 7a45b9cc12d..1f48bb7ab0b 100644 --- a/src/amd/vulkan/radv_formats.c +++ b/src/amd/vulkan/radv_formats.c @@ -172,6 +172,7 @@ radv_is_vertex_buffer_format_supported(VkFormat format) case 8: case 16: case 32: + case 64: return true; default: return false;