diff options
author | Daniel Eklöf <daniel@ekloef.se> | 2020-11-17 18:44:56 +0100 |
---|---|---|
committer | Daniel Eklöf <daniel@ekloef.se> | 2020-11-17 18:45:52 +0100 |
commit | 1d7c35ff5488d936fcf989698749679ae2919f6a (patch) | |
tree | bd810d3711e2bc30ac536a871ade5f5fad4ef995 /main.c | |
parent | 4cde7c116793e597a9d60cdd044632d09f4ad3e0 (diff) | |
download | wbg-1d7c35ff5488d936fcf989698749679ae2919f6a.tar.gz |
render: fix pixman transform’s scale factor when output has a scale factor > 1
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |