From 1d7c35ff5488d936fcf989698749679ae2919f6a Mon Sep 17 00:00:00 2001 From: Daniel Eklöf Date: Tue, 17 Nov 2020 18:44:56 +0100 Subject: render: fix pixman transform’s scale factor when output has a scale factor > 1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index 3403fc1..027f762 100644 --- a/main.c +++ b/main.c @@ -89,8 +89,8 @@ render(struct output *output) 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; + double sx = (double)img_width / (width * scale); + double sy = (double)img_height / (height * scale); pixman_f_transform_t t; pixman_transform_t t2; -- cgit v1.2.3