diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-05-09 17:25:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-09 17:25:05 -0400 |
commit | f520dd8fac7a92ebe8dc2fc678a2690692ae6252 (patch) | |
tree | af0181660de5e76f8620ee0e786c12e50901c1ca /include/wlr | |
parent | 8e831cd416e2eb0c47bbd097422822a0c8888459 (diff) | |
parent | 13098a18eaa8e6edd56f7f8c508b030f91dae67e (diff) |
Merge pull request #965 from emersion/fix-hardware-cursor-scale-transform
Fix hardware cursors scale & transform
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/interfaces/wlr_output.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/wlr/interfaces/wlr_output.h b/include/wlr/interfaces/wlr_output.h index d8c54067..7ecc7551 100644 --- a/include/wlr/interfaces/wlr_output.h +++ b/include/wlr/interfaces/wlr_output.h @@ -14,6 +14,7 @@ struct wlr_output_impl { void (*transform)(struct wlr_output *output, enum wl_output_transform transform); bool (*set_cursor)(struct wlr_output *output, struct wlr_texture *texture, + int32_t scale, enum wl_output_transform transform, int32_t hotspot_x, int32_t hotspot_y, bool update_texture); bool (*move_cursor)(struct wlr_output *output, int x, int y); void (*destroy)(struct wlr_output *output); |