sway

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

commit a0b3606f1725ee56e8dc15ae51ce62d042c0668a
parent 00e9a941523baa4afa1f9c077235aa7aa5e8aeab
Author: Simon Ser <contact@emersion.fr>
Date:   Sun, 29 Sep 2024 16:57:52 +0200

Add support for alpha-modifier-v1

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

diff --git a/sway/server.c b/sway/server.c @@ -9,6 +9,7 @@ #include <wlr/config.h> #include <wlr/render/allocator.h> #include <wlr/render/wlr_renderer.h> +#include <wlr/types/wlr_alpha_modifier_v1.h> #include <wlr/types/wlr_compositor.h> #include <wlr/types/wlr_content_type_v1.h> #include <wlr/types/wlr_cursor_shape_v1.h> @@ -326,6 +327,7 @@ bool server_init(struct sway_server *server) { &server->pointer_constraint); wlr_presentation_create(server->wl_display, server->backend); + wlr_alpha_modifier_v1_create(server->wl_display); server->output_manager_v1 = wlr_output_manager_v1_create(server->wl_display);