output: try skipping buffer allocation if the backend allows it

When enabling an output, skip the empty buffer allocation if the
backend accepts modesets without a buffer.

This fixes mode-setting with the noop backend.
master
Simon Ser 3 years ago committed by Simon Zeni
parent 8a3cd28973
commit df0e75ba05

@ -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)) {

Loading…
Cancel
Save