diff options
author | mntmn <lukas@mntmn.com> | 2018-09-10 17:30:26 +0200 |
---|---|---|
committer | mntmn <lukas@mntmn.com> | 2018-09-10 17:30:26 +0200 |
commit | e1c91884fb3b76ec029cff189e2bfad99e9f06f4 (patch) | |
tree | 06cb02d4c9b16d4e707f57bd8b82cbca7c8f1454 /backend/drm/legacy.c | |
parent | 0086dbed0983949af97d52feb67d417415a57aea (diff) |
fix cursor loss w/ legacy drm and software cursor (tested on etnaviv)
Diffstat (limited to 'backend/drm/legacy.c')
-rw-r--r-- | backend/drm/legacy.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/backend/drm/legacy.c b/backend/drm/legacy.c index d27cf137..c205e167 100644 --- a/backend/drm/legacy.c +++ b/backend/drm/legacy.c @@ -39,7 +39,10 @@ bool legacy_crtc_set_cursor(struct wlr_drm_backend *drm, } if (!bo) { - drmModeSetCursor(drm->fd, crtc->id, 0, 0, 0); + if (drmModeSetCursor(drm->fd, crtc->id, 0, 0, 0)) { + wlr_log_errno(WLR_DEBUG, "Failed to clear hardware cursor"); + return false; + } return true; } |