diff options
author | emersion <contact@emersion.fr> | 2018-07-22 16:27:54 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-07-22 16:27:54 +0100 |
commit | c35a34262f8da368f65d37f811a2264647e0dae6 (patch) | |
tree | ae7891bf8a14c9b22b8085391b9c197882ec6747 /sway/server.c | |
parent | 27f65b94ae35a7b7342ed331884f765141fad373 (diff) |
Enable wlr-gamma-control-unstable-v1
Diffstat (limited to 'sway/server.c')
-rw-r--r-- | sway/server.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/server.c b/sway/server.c index 89dfbf8c..91ae7c97 100644 --- a/sway/server.c +++ b/sway/server.c @@ -9,6 +9,7 @@ #include <wlr/types/wlr_compositor.h> #include <wlr/types/wlr_export_dmabuf_v1.h> #include <wlr/types/wlr_gamma_control.h> +#include <wlr/types/wlr_gamma_control_v1.h> #include <wlr/types/wlr_idle.h> #include <wlr/types/wlr_layer_shell.h> #include <wlr/types/wlr_linux_dmabuf_v1.h> @@ -53,6 +54,7 @@ bool server_init(struct sway_server *server) { wlr_data_device_manager_create(server->wl_display); wlr_gamma_control_manager_create(server->wl_display); + wlr_gamma_control_manager_v1_create(server->wl_display); wlr_primary_selection_device_manager_create(server->wl_display); server->new_output.notify = handle_new_output; |