diff options
author | emersion <contact@emersion.fr> | 2018-02-09 22:54:14 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-02-09 22:54:14 +0100 |
commit | bf6d24540000339029a30715f1f72b5b95a45018 (patch) | |
tree | 89c04c0a109bce115f9a749d8e1958d666e1f02d /include/wlr/interfaces | |
parent | 34489dca16ef9e7fd05c161b8b4f2fd5ce5e4ef0 (diff) |
Swap buffers with damage
Diffstat (limited to 'include/wlr/interfaces')
-rw-r--r-- | include/wlr/interfaces/wlr_output.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/interfaces/wlr_output.h b/include/wlr/interfaces/wlr_output.h index 652be45e..a01f8901 100644 --- a/include/wlr/interfaces/wlr_output.h +++ b/include/wlr/interfaces/wlr_output.h @@ -19,7 +19,7 @@ struct wlr_output_impl { bool (*move_cursor)(struct wlr_output *output, int x, int y); void (*destroy)(struct wlr_output *output); bool (*make_current)(struct wlr_output *output, int *buffer_age); - bool (*swap_buffers)(struct wlr_output *output); + bool (*swap_buffers)(struct wlr_output *output, pixman_region32_t *damage); void (*set_gamma)(struct wlr_output *output, uint32_t size, uint16_t *r, uint16_t *g, uint16_t *b); uint32_t (*get_gamma_size)(struct wlr_output *output); |