diff options
author | emersion <contact@emersion.fr> | 2018-01-18 17:18:21 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-01-18 17:18:21 +0100 |
commit | 8b3f3ddb7f806d64a47e60c8161d9546f6aeaccf (patch) | |
tree | 31b0982f4ed5dfc5bbcd6d3b74abb81a023d0d9b /include/rootston | |
parent | 7c11d3e372769c4ec596d7c82a3207e65454dffe (diff) |
rootston: fix double-buffering artifacts
Diffstat (limited to 'include/rootston')
-rw-r--r-- | include/rootston/output.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rootston/output.h b/include/rootston/output.h index cf34496b..a0b2b1b4 100644 --- a/include/rootston/output.h +++ b/include/rootston/output.h @@ -16,7 +16,7 @@ struct roots_output { struct wl_listener frame; struct timespec last_frame; - pixman_region32_t damage; + pixman_region32_t damage, previous_damage; struct wl_event_source *repaint_timer; }; |