aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--types/output/render.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/types/output/render.c b/types/output/render.c
index 4ccfb70d..50fbfa2b 100644
--- a/types/output/render.c
+++ b/types/output/render.c
@@ -209,13 +209,13 @@ bool output_ensure_buffer(struct wlr_output *output,
if (state->committed & WLR_OUTPUT_STATE_RENDER_FORMAT) {
needs_new_buffer = true;
}
- if (!needs_new_buffer) {
- return true;
+ if (state->allow_artifacts && output->commit_seq == 0) {
+ // On first commit, require a new buffer if the compositor called a
+ // mode-setting function, even if the mode won't change. This makes it
+ // so the swapchain is created now.
+ needs_new_buffer = true;
}
-
- // If the backend doesn't necessarily need a new buffer on modeset, don't
- // bother allocating one.
- if (!output->impl->test || output->impl->test(output, state)) {
+ if (!needs_new_buffer) {
return true;
}