aboutsummaryrefslogtreecommitdiff
path: root/render/pixman/pass.c
diff options
context:
space:
mode:
authorAlexander Orzechowski <alex@ozal.ski>2023-08-28 15:01:05 -0400
committerAlexander Orzechowski <alex@ozal.ski>2023-09-21 02:25:34 -0400
commite9706e62f550f81ca6cc1546aaa3660f654eeb9f (patch)
treec06e5b26ca06638db1ba92203ff1ef73d6f74473 /render/pixman/pass.c
parent5299d973d5f497180b0ccf80d09a4aed4ebbfea2 (diff)
renderer: Use wlr_render_rect_options_get_box
Fixes: #3697
Diffstat (limited to 'render/pixman/pass.c')
-rw-r--r--render/pixman/pass.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/render/pixman/pass.c b/render/pixman/pass.c
index 4b85889b..5fe73b05 100644
--- a/render/pixman/pass.c
+++ b/render/pixman/pass.c
@@ -162,7 +162,8 @@ static void render_pass_add_rect(struct wlr_render_pass *wlr_pass,
const struct wlr_render_rect_options *options) {
struct wlr_pixman_render_pass *pass = get_render_pass(wlr_pass);
struct wlr_pixman_buffer *buffer = pass->buffer;
- struct wlr_box box = options->box;
+ struct wlr_box box;
+ wlr_render_rect_options_get_box(options, pass->buffer->buffer, &box);
pixman_op_t op = get_pixman_blending(options->color.a == 1 ?
WLR_RENDER_BLEND_MODE_NONE : options->blend_mode);