aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--types/wlr_output.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/types/wlr_output.c b/types/wlr_output.c
index 47ee55be..394f82cd 100644
--- a/types/wlr_output.c
+++ b/types/wlr_output.c
@@ -677,6 +677,12 @@ static bool output_ensure_buffer(struct wlr_output *output) {
return 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)) {
+ return true;
+ }
+
wlr_log(WLR_DEBUG, "Attaching empty buffer to output for modeset");
if (!output_attach_empty_buffer(output)) {