Message ID | 20180720190335.23880-2-daniels@collabora.com |
---|---|
State | Accepted |
Commit | 64dbbee7f6570949edc8bca30e6cd026a9e70a59 |
Headers | show |
Series |
"weston-debug API and tool"
( rev:
2
1
)
in
Wayland (DEPRECATED) |
diff --git a/libweston/compositor-drm.c b/libweston/compositor-drm.c index 704ac32c7..e27671437 100644 --- a/libweston/compositor-drm.c +++ b/libweston/compositor-drm.c @@ -463,6 +463,7 @@ struct drm_head { struct drm_output { struct weston_output base; + struct drm_backend *backend; uint32_t crtc_id; /* object ID to pass to DRM functions */ int pipe; /* index of CRTC in resource array / bitmasks */ @@ -6101,6 +6102,8 @@ drm_output_create(struct weston_compositor *compositor, const char *name) if (output == NULL) return NULL; + output->backend = b; + weston_output_init(&output->base, compositor, name); output->base.enable = drm_output_enable;
Add this for convenience, so it's easier to access when we add the DRM backend debug scope. Signed-off-by: Daniel Stone <daniels@collabora.com> --- libweston/compositor-drm.c | 3 +++ 1 file changed, 3 insertions(+)