aboutsummaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
Diffstat (limited to 'backend')
-rw-r--r--backend/wayland/output.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/backend/wayland/output.c b/backend/wayland/output.c
index 1f56eabe..077aa16d 100644
--- a/backend/wayland/output.c
+++ b/backend/wayland/output.c
@@ -190,6 +190,9 @@ static struct wlr_wl_buffer *create_wl_buffer(struct wlr_wl_backend *wl,
}
static bool output_test(struct wlr_output *wlr_output) {
+ struct wlr_wl_output *output =
+ get_wl_output_from_output(wlr_output);
+
if (wlr_output->pending.committed & WLR_OUTPUT_STATE_ENABLED) {
wlr_log(WLR_DEBUG, "Cannot disable a Wayland output");
return false;
@@ -199,6 +202,12 @@ static bool output_test(struct wlr_output *wlr_output) {
assert(wlr_output->pending.mode_type == WLR_OUTPUT_STATE_MODE_CUSTOM);
}
+ if ((wlr_output->pending.committed & WLR_OUTPUT_STATE_BUFFER) &&
+ wlr_output->pending.buffer_type == WLR_OUTPUT_STATE_BUFFER_SCANOUT &&
+ !test_buffer(output->backend, wlr_output->pending.buffer)) {
+ return false;
+ }
+
return true;
}