From 76a79eeac3f49abb048feeb3a8f349db1fc3adbc Mon Sep 17 00:00:00 2001 From: Daniel Eklöf Date: Sun, 20 Sep 2020 12:20:21 +0200 Subject: main: render: use scaled width/height when compositing image --- main.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/main.c b/main.c index 9ec2832..8e13b5b 100644 --- a/main.c +++ b/main.c @@ -78,11 +78,13 @@ render(struct output *output) int img_stride = pixman_image_get_stride(image); pixman_format_code_t img_fmt = pixman_image_get_format(image); - double sx = (double)img_width / width; - double sy = (double)img_height / height; pixman_image_t *pix = pixman_image_create_bits_no_clear( img_fmt, img_width, img_height, data, img_stride); + + double sx = (double)img_width / width; + double sy = (double)img_height / height; + pixman_f_transform_t t; pixman_transform_t t2; pixman_f_transform_init_scale(&t, sx, sy); @@ -92,7 +94,7 @@ render(struct output *output) pixman_image_composite32( PIXMAN_OP_SRC, pix, NULL, buf->pix, 0, 0, 0, 0, 0, 0, - width, height); + width * scale, height * scale); pixman_image_unref(pix); -- cgit v1.2.3