diff options
author | Simon Ser <contact@emersion.fr> | 2020-05-07 16:17:18 +0200 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2020-05-09 16:42:25 +0200 |
commit | c9d6b18eef1099a033b89b834b0e2822e1218a4a (patch) | |
tree | d54ea26e8bcdc51677c949adfa9d6b62f0971ea9 /include/backend | |
parent | 064f64dbf7a5e71116cb03d8d45aaaf0ee69312e (diff) |
backend/drm: remove wlr_drm_interface.crtc_move_cursor
Instead, make the legacy backend call drmModeMoveCursor on page-flip.
Diffstat (limited to 'include/backend')
-rw-r--r-- | include/backend/drm/iface.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/backend/drm/iface.h b/include/backend/drm/iface.h index d8268347..acaf4730 100644 --- a/include/backend/drm/iface.h +++ b/include/backend/drm/iface.h @@ -22,9 +22,6 @@ struct wlr_drm_interface { // Enable the cursor buffer on crtc. Set bo to NULL to disable bool (*crtc_set_cursor)(struct wlr_drm_backend *drm, struct wlr_drm_crtc *crtc, struct gbm_bo *bo); - // Move the cursor on crtc - bool (*crtc_move_cursor)(struct wlr_drm_backend *drm, - struct wlr_drm_crtc *crtc, int x, int y); // Set the gamma lut on crtc bool (*crtc_set_gamma)(struct wlr_drm_backend *drm, struct wlr_drm_crtc *crtc, size_t size, |