aboutsummaryrefslogtreecommitdiff
path: root/dwl.c
diff options
context:
space:
mode:
authorLeonardo Hernández Hernández <leohdz172@proton.me>2024-10-27 20:26:55 -0600
committerLeonardo Hernández Hernández <leohdz172@proton.me>2024-10-27 20:37:15 -0600
commit6ca87210d49424b457a319ae037d8a0658346af9 (patch)
tree357bd6e9bd9a63eda34d316c43559e3b62dc2e6a /dwl.c
parent002c7d22043da56a54511b5d234c2e3bd997d119 (diff)
downloaddwl-6ca87210d49424b457a319ae037d8a0658346af9.tar.gz
check if the backend supports explicit sync before creating the object (wlroots!4848)
References: https://gitlab.freedesktop.org/wlroots/wlroots/-/merge_requests/4848
Diffstat (limited to 'dwl.c')
-rw-r--r--dwl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/dwl.c b/dwl.c
index dc0c861..19eaf71 100644
--- a/dwl.c
+++ b/dwl.c
@@ -2436,7 +2436,8 @@ setup(void)
wlr_linux_dmabuf_v1_create_with_renderer(dpy, 5, drw));
}
- if ((drm_fd = wlr_renderer_get_drm_fd(drw)) >= 0 && drw->features.timeline)
+ if ((drm_fd = wlr_renderer_get_drm_fd(drw)) >= 0 && drw->features.timeline
+ && backend->features.timeline)
wlr_linux_drm_syncobj_manager_v1_create(dpy, 1, drm_fd);
/* Autocreates an allocator for us.