diff options
author | emersion <contact@emersion.fr> | 2018-08-02 23:59:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-02 23:59:20 +0100 |
commit | 4eadf9f3ae73637e1479d84331786e3c3676cf65 (patch) | |
tree | d340b7776f945462f5ecffc830ada4d5fbe82f51 | |
parent | e07da5fc5c6ac5c186662b56b08ca71531119de0 (diff) | |
parent | 3a54e2291c017397ceff60511c29fe70d229bc8b (diff) | |
download | sway-4eadf9f3ae73637e1479d84331786e3c3676cf65.tar.xz |
Merge pull request #2325 from emersion/wlr-gamma-control
Enable wlr-gamma-control-unstable-v1
-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 10ca9614..e8755360 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> @@ -56,6 +57,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; |