sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 83389da5832eee448a47d11508c7d107d3871de7
parent 9d6787d10d3800ff4873ad6ac3abe4b096090427
Author: Simon Ser <contact@emersion.fr>
Date:   Mon, 16 Nov 2020 13:53:49 +0100

Log which output is using direct scan-out

Diffstat:
Msway/desktop/output.c | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/sway/desktop/output.c b/sway/desktop/output.c @@ -580,10 +580,12 @@ static int output_repaint_timer_handler(void *data) { scan_out_fullscreen_view(output, fullscreen_con->view); if (scanned_out && !last_scanned_out) { - sway_log(SWAY_DEBUG, "Scanning out fullscreen view"); + sway_log(SWAY_DEBUG, "Scanning out fullscreen view on %s", + output->wlr_output->name); } if (last_scanned_out && !scanned_out) { - sway_log(SWAY_DEBUG, "Stopping fullscreen view scan out"); + sway_log(SWAY_DEBUG, "Stopping fullscreen view scan out on %s", + output->wlr_output->name); } last_scanned_out = scanned_out;