diff options
author | emersion <contact@emersion.fr> | 2018-02-02 21:01:59 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-02-02 21:01:59 +0100 |
commit | bb4aeb3b2f8d739b042ab8c2f2b9b6d1caf6e26b (patch) | |
tree | a69ea4d3c502f037844d822c1a584acb766c4674 /include/backend | |
parent | 5aa642485d8d2e1cc17a105dfcc69dd93b20c9a9 (diff) |
backend/drm: support updating cursor when session is paused
Diffstat (limited to 'include/backend')
-rw-r--r-- | include/backend/drm/drm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/backend/drm/drm.h b/include/backend/drm/drm.h index 72671f45..af472ede 100644 --- a/include/backend/drm/drm.h +++ b/include/backend/drm/drm.h @@ -123,8 +123,8 @@ struct wlr_drm_connector { union wlr_drm_connector_props props; - uint32_t width; - uint32_t height; + uint32_t width, height; + int32_t cursor_x, cursor_y; drmModeCrtc *old_crtc; |