Allocate framebuffers for hardware cursors

Still doesn't fix cursors though
This commit is contained in:
Drew DeVault 2017-06-19 14:02:25 -04:00
parent 7e038a6110
commit e9609e9adf
2 changed files with 6 additions and 1 deletions

View file

@ -296,6 +296,10 @@ static void wlr_drm_cursor_bo_update(struct wlr_output_state *output,
wlr_log(L_ERROR, "Failed to create cursor bo");
return;
}
if (!get_fb_for_bo(state->fd, output->cursor_bo[i])) {
wlr_log(L_ERROR, "Failed to create cursor fb");
return;
}
}
}