aboutsummaryrefslogtreecommitdiff
path: root/rootston
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-07-04 15:37:04 +0100
committeremersion <contact@emersion.fr>2018-07-04 15:37:04 +0100
commit8c2b4244a1e5adff3ac4d19381f7e73212b9d467 (patch)
tree6c746fb2d5bb21d56653cdae7c26f9fcc33aa97c /rootston
parent12dd9544f9756f7f172259d7ad75a60e2eb86a41 (diff)
Fix damage tracking debug mode
Diffstat (limited to 'rootston')
-rw-r--r--rootston/output.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/rootston/output.c b/rootston/output.c
index 353d431f..8154816d 100644
--- a/rootston/output.c
+++ b/rootston/output.c
@@ -517,6 +517,13 @@ static void render_output(struct roots_output *output) {
renderer_end:
wlr_renderer_scissor(renderer, NULL);
wlr_renderer_end(renderer);
+
+ if (server->config->debug_damage_tracking) {
+ int width, height;
+ wlr_output_transformed_resolution(wlr_output, &width, &height);
+ pixman_region32_union_rect(&damage, &damage, 0, 0, width, height);
+ }
+
if (!wlr_output_damage_swap_buffers(output->damage, &now, &damage)) {
goto damage_finish;
}