From 4922d269b8724a895628ca98c2d53890f3fd86b4 Mon Sep 17 00:00:00 2001 From: Ryan Dwyer Date: Wed, 9 May 2018 16:33:43 +1000 Subject: [PATCH] Fix titles on rotated outputs If the output is rotated, the scissor box needs to be transformed in the opposite rotation. --- sway/desktop/output.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sway/desktop/output.c b/sway/desktop/output.c index d17a6e143..9b0f1ae34 100644 --- a/sway/desktop/output.c +++ b/sway/desktop/output.c @@ -308,7 +308,11 @@ static void render_container_simple_border_normal(struct sway_output *output, // Title text if (title_texture) { - wlr_renderer_scissor(renderer, &box); + struct wlr_box scissor_box; + wlr_box_transform(&box, + wlr_output_transform_invert(output->wlr_output->transform), + output->swayc->width, output->swayc->height, &scissor_box); + wlr_renderer_scissor(renderer, &scissor_box); wlr_render_texture(renderer, title_texture, output->wlr_output->transform_matrix, box.x, box.y, 1); wlr_renderer_scissor(renderer, NULL);