diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-06-26 18:23:52 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-26 18:23:52 -0400 |
commit | ce471f3371221e56c7352919465f1fc8f5de3956 (patch) | |
tree | 8c40a229d38ed173c8a87e411b01b62055023bef /include/wlr/interfaces | |
parent | f252c5a79214a3d3cd7ab3f239050b234e4ae9e2 (diff) | |
parent | 97213cc00e0a83235ca50b1305ab9ecafd295259 (diff) |
Merge pull request #23 from ascent12/cursor
Software cursor + Hardware cursor improvements
Diffstat (limited to 'include/wlr/interfaces')
-rw-r--r-- | include/wlr/interfaces/wlr_output.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/wlr/interfaces/wlr_output.h b/include/wlr/interfaces/wlr_output.h index 0949bca3..5f9bfdd2 100644 --- a/include/wlr/interfaces/wlr_output.h +++ b/include/wlr/interfaces/wlr_output.h @@ -13,6 +13,8 @@ struct wlr_output_impl { const uint8_t *buf, int32_t stride, uint32_t width, uint32_t height); bool (*move_cursor)(struct wlr_output_state *state, int x, int y); void (*destroy)(struct wlr_output_state *state); + void (*make_current)(struct wlr_output_state *state); + void (*swap_buffers)(struct wlr_output_state *state); }; struct wlr_output *wlr_output_create(struct wlr_output_impl *impl, |