diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2024-09-29 16:50:00 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2024-09-29 16:50:00 -0400 |
| commit | 2196889f895d9f28b736806b8da46fbe90b6f0fd (patch) | |
| tree | 26ad960bbb4d9cbf5163ace648de4117210c04bd | |
| parent | 662904f82c85ff16ac82adca690a9431e5902aaf (diff) | |
Fix alpha-modifier-v1
(cherry picked from commit 9a9be01ad4130e4e19b437fd064f90982974971f)
| -rw-r--r-- | sway/desktop/output.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c index 0a19ad57..35a61bd0 100644 --- a/sway/desktop/output.c +++ b/sway/desktop/output.c @@ -8,6 +8,7 @@ #include <wlr/render/swapchain.h> #include <wlr/render/wlr_renderer.h> #include <wlr/types/wlr_buffer.h> +#include <wlr/types/wlr_alpha_modifier_v1.h> #include <wlr/types/wlr_gamma_control_v1.h> #include <wlr/types/wlr_matrix.h> #include <wlr/types/wlr_output_layout.h> @@ -216,6 +217,15 @@ static void output_configure_scene(struct sway_output *output, if (node->type == WLR_SCENE_NODE_BUFFER) { struct wlr_scene_buffer *buffer = wlr_scene_buffer_from_node(node); + struct wlr_scene_surface *surface = wlr_scene_surface_try_from_buffer(buffer); + + if (surface) { + const struct wlr_alpha_modifier_surface_v1_state *alpha_modifier_state = + wlr_alpha_modifier_v1_get_surface_state(surface->surface); + if (alpha_modifier_state != NULL) { + opacity *= (float)alpha_modifier_state->multiplier; + } + } // hack: don't call the scene setter because that will damage all outputs // We don't want to damage outputs that aren't our current output that |
