diff options
author | Simon Ser <contact@emersion.fr> | 2023-11-20 19:31:29 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2023-11-20 19:54:16 +0100 |
commit | fe6a432299852f9fce72358999c736172a9065bd (patch) | |
tree | 4b54a87ef44333d44bebd817805e3cd3c9ab3b89 /include | |
parent | 515681503e4ce268da3cc6d951104ecafcd1194c (diff) |
linux-dmabuf-v1: skip import check on split render/display SoCs
Unfortunately we have no way to get back the proper render node in
that case. This will be fixed with [1]: with that Mesa patch, the
wlr_renderer will return the proper render node and the existing
logic will work fine.
[1]: https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24825
Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3757
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_linux_dmabuf_v1.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/types/wlr_linux_dmabuf_v1.h b/include/wlr/types/wlr_linux_dmabuf_v1.h index bfc39a85..e39c0993 100644 --- a/include/wlr/types/wlr_linux_dmabuf_v1.h +++ b/include/wlr/types/wlr_linux_dmabuf_v1.h @@ -61,7 +61,7 @@ struct wlr_linux_dmabuf_v1 { struct wlr_drm_format_set default_formats; // for legacy clients struct wl_list surfaces; // wlr_linux_dmabuf_v1_surface.link - int main_device_fd; // to sanity check FDs sent by clients + int main_device_fd; // to sanity check FDs sent by clients, -1 if unavailable struct wl_listener display_destroy; }; |