aboutsummaryrefslogtreecommitdiffstats
path: root/sway/server.c
diff options
context:
space:
mode:
authorLibravatar Rostislav Pehlivanov <atomnuker@gmail.com>2018-06-22 13:44:16 +0100
committerLibravatar Rostislav Pehlivanov <atomnuker@gmail.com>2018-06-22 13:45:32 +0100
commitaa9f058e3e8c49be88cadbf506d0c089795968b3 (patch)
treeb63fcffcd110002802578f72144fd1e6a7913451 /sway/server.c
parentMerge pull request #2143 from vilhalmer/mark-pool-buffers-busy (diff)
downloadsway-aa9f058e3e8c49be88cadbf506d0c089795968b3.tar.gz
sway-aa9f058e3e8c49be88cadbf506d0c089795968b3.tar.zst
sway-aa9f058e3e8c49be88cadbf506d0c089795968b3.zip
Init the dmabuf exporting protocol in wlroots
Allows desktop capture via the dmabuf-capture wlroots example client.
Diffstat (limited to 'sway/server.c')
-rw-r--r--sway/server.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/server.c b/sway/server.c
index 824b1d8e..8af0bc5b 100644
--- a/sway/server.c
+++ b/sway/server.c
@@ -11,6 +11,7 @@
11#include <wlr/types/wlr_idle.h> 11#include <wlr/types/wlr_idle.h>
12#include <wlr/types/wlr_layer_shell.h> 12#include <wlr/types/wlr_layer_shell.h>
13#include <wlr/types/wlr_linux_dmabuf.h> 13#include <wlr/types/wlr_linux_dmabuf.h>
14#include <wlr/types/wlr_export_dmabuf_v1.h>
14#include <wlr/types/wlr_primary_selection.h> 15#include <wlr/types/wlr_primary_selection.h>
15#include <wlr/types/wlr_screenshooter.h> 16#include <wlr/types/wlr_screenshooter.h>
16#include <wlr/types/wlr_server_decoration.h> 17#include <wlr/types/wlr_server_decoration.h>
@@ -97,6 +98,7 @@ bool server_init(struct sway_server *server) {
97 deco_manager, WLR_SERVER_DECORATION_MANAGER_MODE_SERVER); 98 deco_manager, WLR_SERVER_DECORATION_MANAGER_MODE_SERVER);
98 99
99 wlr_linux_dmabuf_create(server->wl_display, renderer); 100 wlr_linux_dmabuf_create(server->wl_display, renderer);
101 wlr_export_dmabuf_manager_v1_create(server->wl_display);
100 102
101 server->socket = wl_display_add_socket_auto(server->wl_display); 103 server->socket = wl_display_add_socket_auto(server->wl_display);
102 if (!server->socket) { 104 if (!server->socket) {