sway

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

commit 4b781356a4501ea6fc648f3d3a4abcd061bf51cd
parent 265378270ac4d4580bcbede59d7ed267ee3c2969
Author: Drew DeVault <sir@cmpwn.com>
Date:   Mon, 26 Feb 2018 19:04:57 -0500

Fix wlr_render_with_matrix call

This takes an alpha parameter now.

Diffstat:
Msway/desktop/output.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sway/desktop/output.c b/sway/desktop/output.c @@ -63,7 +63,7 @@ static void render_surface(struct wlr_surface *surface, wlr_matrix_project_box(&matrix, &render_box, surface->current->transform, 0, &wlr_output->transform_matrix); wlr_render_with_matrix(server.renderer, surface->texture, - &matrix); + &matrix, 1.0f); // TODO: configurable alpha wlr_surface_send_frame_done(surface, when); }