summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-05-09 16:33:43 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-05-09 16:41:54 +1000
commit4922d269b8724a895628ca98c2d53890f3fd86b4 (patch)
treeaa6fe90a007a7c016ffa8442826956d8ce99b522
parentMerge pull request #1942 from VincentVanlaer/xwayland-lazy (diff)
downloadsway-4922d269b8724a895628ca98c2d53890f3fd86b4.tar.gz
sway-4922d269b8724a895628ca98c2d53890f3fd86b4.tar.zst
sway-4922d269b8724a895628ca98c2d53890f3fd86b4.zip
Fix titles on rotated outputs
If the output is rotated, the scissor box needs to be transformed in the opposite rotation.
-rw-r--r--sway/desktop/output.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index d17a6e14..9b0f1ae3 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,
308 308
309 // Title text 309 // Title text
310 if (title_texture) { 310 if (title_texture) {
311 wlr_renderer_scissor(renderer, &box); 311 struct wlr_box scissor_box;
312 wlr_box_transform(&box,
313 wlr_output_transform_invert(output->wlr_output->transform),
314 output->swayc->width, output->swayc->height, &scissor_box);
315 wlr_renderer_scissor(renderer, &scissor_box);
312 wlr_render_texture(renderer, title_texture, 316 wlr_render_texture(renderer, title_texture,
313 output->wlr_output->transform_matrix, box.x, box.y, 1); 317 output->wlr_output->transform_matrix, box.x, box.y, 1);
314 wlr_renderer_scissor(renderer, NULL); 318 wlr_renderer_scissor(renderer, NULL);