Skip to content

Commit

Permalink
Add support for linux-drm-syncobj-v1
Browse files Browse the repository at this point in the history
  • Loading branch information
emersion committed Aug 4, 2024
1 parent 6e4ccb9 commit c6db3ab
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sway/server.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include <wlr/types/wlr_idle_notify_v1.h>
#include <wlr/types/wlr_layer_shell_v1.h>
#include <wlr/types/wlr_linux_dmabuf_v1.h>
#include <wlr/types/wlr_linux_drm_syncobj_v1.h>
#include <wlr/types/wlr_output_management_v1.h>
#include <wlr/types/wlr_output_power_management_v1.h>
#include <wlr/types/wlr_pointer_constraints_v1.h>
Expand Down Expand Up @@ -248,6 +249,11 @@ bool server_init(struct sway_server *server) {
wlr_drm_create(server->wl_display, server->renderer);
}
}
if (wlr_renderer_get_drm_fd(server->renderer) >= 0 &&
server->renderer->features.timeline) {
wlr_linux_drm_syncobj_manager_v1_create(server->wl_display, 1,
wlr_renderer_get_drm_fd(server->renderer));
}

server->allocator = wlr_allocator_autocreate(server->backend,
server->renderer);
Expand Down

0 comments on commit c6db3ab

Please sign in to comment.