Skip to content

Commit

Permalink
Fix alpha-modifier-v1
Browse files Browse the repository at this point in the history
  • Loading branch information
Nefsen402 authored and emersion committed Sep 29, 2024
1 parent a2757e5 commit 9a9be01
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions sway/desktop/output.c
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 9a9be01

Please sign in to comment.