output: add a swapchain NULL check in wlr_output_commit_state()

Fixes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3504
Kirill Primak 2 years ago committed by Simon Ser
parent 46a686ce6b
commit ff9c52801f

@ -817,7 +817,8 @@ bool wlr_output_commit_state(struct wlr_output *output,
output->needs_frame = false;
}
if (pending.committed & WLR_OUTPUT_STATE_BUFFER) {
if ((pending.committed & WLR_OUTPUT_STATE_BUFFER) &&
output->swapchain != NULL) {
wlr_swapchain_set_buffer_submitted(output->swapchain, pending.buffer);
}

Loading…
Cancel
Save