Merge pull request #1234 from mntmn/master

fix cursor loss w/ legacy drm and software cursor (tested on etnaviv)
master
emersion 6 years ago committed by GitHub
commit d8ca467211
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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;
}

Loading…
Cancel
Save