sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit aa9f058e3e8c49be88cadbf506d0c089795968b3
parent 202ee511503bc7c6a18dec440ac3cdb8d5e8f859
Author: Rostislav Pehlivanov <atomnuker@gmail.com>
Date:   Fri, 22 Jun 2018 13:44:16 +0100

Init the dmabuf exporting protocol in wlroots

Allows desktop capture via the dmabuf-capture wlroots example client.

Diffstat:
Msway/server.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/sway/server.c b/sway/server.c @@ -11,6 +11,7 @@ #include <wlr/types/wlr_idle.h> #include <wlr/types/wlr_layer_shell.h> #include <wlr/types/wlr_linux_dmabuf.h> +#include <wlr/types/wlr_export_dmabuf_v1.h> #include <wlr/types/wlr_primary_selection.h> #include <wlr/types/wlr_screenshooter.h> #include <wlr/types/wlr_server_decoration.h> @@ -97,6 +98,7 @@ bool server_init(struct sway_server *server) { deco_manager, WLR_SERVER_DECORATION_MANAGER_MODE_SERVER); wlr_linux_dmabuf_create(server->wl_display, renderer); + wlr_export_dmabuf_manager_v1_create(server->wl_display); server->socket = wl_display_add_socket_auto(server->wl_display); if (!server->socket) {