mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-22 15:12:26 +00:00
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:
parent
0ba3ea3bcd
commit
beb820b573
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user