render/vulkan: improve error handling in vulkan_begin_render_pass()

Release the command buffer if we end up not submitting it.
This commit is contained in:
Simon Ser 2023-05-30 14:13:16 +02:00
parent 0ba3ea3bcd
commit beb820b573
1 changed files with 1 additions and 0 deletions

View File

@ -579,6 +579,7 @@ struct wlr_vk_render_pass *vulkan_begin_render_pass(struct wlr_vk_renderer *rend
VkResult res = vkBeginCommandBuffer(cb->vk, &begin_info);
if (res != VK_SUCCESS) {
wlr_vk_error("vkBeginCommandBuffer", res);
vulkan_reset_command_buffer(cb);
free(pass);
return NULL;
}