mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
backend/drm: add wlr_drm_backend_get_parent()
Allows compositors to figure out whether a DRM backend is secondary on a multi-GPU setup.
This commit is contained in:
parent
3531007b75
commit
fc7a0b93dd
2 changed files with 10 additions and 0 deletions
|
|
@ -96,6 +96,11 @@ bool wlr_backend_is_drm(struct wlr_backend *b) {
|
|||
return b->impl == &backend_impl;
|
||||
}
|
||||
|
||||
struct wlr_backend *wlr_drm_backend_get_parent(struct wlr_backend *backend) {
|
||||
struct wlr_drm_backend *drm = get_drm_backend_from_backend(backend);
|
||||
return drm->parent ? &drm->parent->backend : NULL;
|
||||
}
|
||||
|
||||
static void handle_session_active(struct wl_listener *listener, void *data) {
|
||||
struct wlr_drm_backend *drm =
|
||||
wl_container_of(listener, drm, session_active);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue