venus: fix to drop an extra ;

Fixes: 32283b9703 ("Refactor and add template support for iub")
Signed-off-by: Yiwei Zhang <zzyiwei@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28686>
This commit is contained in:
Yiwei Zhang 2024-04-04 13:57:21 -07:00 committed by Marge Bot
parent be84424738
commit 4c6b9e2fbe

View file

@ -1153,7 +1153,7 @@ vn_update_descriptor_set_with_template_locked(
*dst = *src;
}
break;
case VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK:;
case VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK:
VkWriteDescriptorSetInlineUniformBlock *iub_data =
(VkWriteDescriptorSetInlineUniformBlock *)vk_find_struct_const(
write->pNext, WRITE_DESCRIPTOR_SET_INLINE_UNIFORM_BLOCK);