aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorDaniel Eklöf <daniel@ekloef.se>2020-11-17 18:44:56 +0100
committerDaniel Eklöf <daniel@ekloef.se>2020-11-17 18:45:52 +0100
commit1d7c35ff5488d936fcf989698749679ae2919f6a (patch)
treebd810d3711e2bc30ac536a871ade5f5fad4ef995 /main.c
parent4cde7c116793e597a9d60cdd044632d09f4ad3e0 (diff)
downloadwbg-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.c4
1 files 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;