mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-16 05:34:00 -04:00
render: sixel: use pixman_image_composite32()
This commit is contained in:
parent
fd99b28beb
commit
0969b2ebd7
1 changed files with 1 additions and 1 deletions
2
render.c
2
render.c
|
|
@ -779,7 +779,7 @@ render_sixel(struct terminal *term, pixman_image_t *pix,
|
||||||
assert(x + width <= term->width - term->margins.right);
|
assert(x + width <= term->width - term->margins.right);
|
||||||
assert(y + height <= term->height - term->margins.bottom);
|
assert(y + height <= term->height - term->margins.bottom);
|
||||||
|
|
||||||
pixman_image_composite(
|
pixman_image_composite32(
|
||||||
PIXMAN_OP_SRC,
|
PIXMAN_OP_SRC,
|
||||||
sixel->pix,
|
sixel->pix,
|
||||||
NULL,
|
NULL,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue