From bc048b22fb3158e9ecad3e8e32d63e0e03eaa7bb Mon Sep 17 00:00:00 2001 From: Vincent Vanlaer Date: Tue, 5 Feb 2019 23:39:30 +0100 Subject: [PATCH] Copy cursor surface to secondary gpu if necessary --- backend/drm/drm.c | 29 +++++++++++++++++++++++------ backend/drm/renderer.c | 2 +- 2 files changed, 24 insertions(+), 7 deletions(-) diff --git a/backend/drm/drm.c b/backend/drm/drm.c index 0fca55d8..7713b5bb 100644 --- a/backend/drm/drm.c +++ b/backend/drm/drm.c @@ -636,13 +636,25 @@ static bool drm_connector_set_cursor(struct wlr_output *output, ret = drmGetCap(drm->fd, DRM_CAP_CURSOR_HEIGHT, &h); h = ret ? 64 : h; - struct wlr_drm_renderer *renderer = - drm->parent ? &drm->parent->renderer : &drm->renderer; - if (!init_drm_surface(&plane->surf, renderer, w, h, - renderer->gbm_format, GBM_BO_USE_LINEAR | GBM_BO_USE_SCANOUT)) { - wlr_log(WLR_ERROR, "Cannot allocate cursor resources"); - return false; + if (!drm->parent) { + if (!init_drm_surface(&plane->surf, &drm->renderer, w, h, + drm->renderer.gbm_format, GBM_BO_USE_LINEAR | GBM_BO_USE_SCANOUT)) { + wlr_log(WLR_ERROR, "Cannot allocate cursor resources"); + return false; + } + } else { + if (!init_drm_surface(&plane->surf, &drm->parent->renderer, w, h, + drm->parent->renderer.gbm_format, GBM_BO_USE_LINEAR)) { + wlr_log(WLR_ERROR, "Cannot allocate cursor resources"); + return false; + } + + if (!init_drm_surface(&plane->mgpu_surf, &drm->renderer, w, h, + drm->renderer.gbm_format, GBM_BO_USE_LINEAR | GBM_BO_USE_SCANOUT)) { + wlr_log(WLR_ERROR, "Cannot allocate cursor resources"); + return false; + } } } @@ -712,6 +724,11 @@ static bool drm_connector_set_cursor(struct wlr_output *output, } struct gbm_bo *bo = plane->cursor_enabled ? plane->surf.back : NULL; + + if (drm->parent) { + bo = copy_drm_surface_mgpu(&plane->mgpu_surf, plane->surf.back); + } + bool ok = drm->iface->crtc_set_cursor(drm, crtc, bo); if (ok) { wlr_output_update_needs_swap(output); diff --git a/backend/drm/renderer.c b/backend/drm/renderer.c index b77a7ce0..72cfd430 100644 --- a/backend/drm/renderer.c +++ b/backend/drm/renderer.c @@ -230,7 +230,7 @@ struct gbm_bo *copy_drm_surface_mgpu(struct wlr_drm_surface *dest, struct wlr_renderer *renderer = dest->renderer->wlr_rend; wlr_renderer_begin(renderer, dest->width, dest->height); - wlr_renderer_clear(renderer, (float[]){ 0.0, 0.0, 0.0, 1.0 }); + wlr_renderer_clear(renderer, (float[]){ 0.0, 0.0, 0.0, 0.0 }); wlr_render_texture_with_matrix(renderer, tex, mat, 1.0f); wlr_renderer_end(renderer);