mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-04 20:55:58 +01:00
render/vulkan: detect device loss
This commit is contained in:
parent
165352e32f
commit
d6e2ab5145
1 changed files with 5 additions and 1 deletions
|
@ -922,7 +922,11 @@ static void vulkan_end(struct wlr_renderer *wlr_renderer) {
|
|||
|
||||
VkResult res = vkQueueSubmit(renderer->dev->queue, submit_count,
|
||||
submit_infos, NULL);
|
||||
if (res != VK_SUCCESS) {
|
||||
if (res == VK_ERROR_DEVICE_LOST) {
|
||||
wlr_log(WLR_ERROR, "vkQueueSubmit failed with VK_ERROR_DEVICE_LOST");
|
||||
wl_signal_emit_mutable(&wlr_renderer->events.lost, NULL);
|
||||
return;
|
||||
} else if (res != VK_SUCCESS) {
|
||||
wlr_vk_error("vkQueueSubmit", res);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue