aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorDaniel Eklöf <daniel@ekloef.se>2020-09-20 12:20:21 +0200
committerDaniel Eklöf <daniel@ekloef.se>2020-09-20 12:20:21 +0200
commit76a79eeac3f49abb048feeb3a8f349db1fc3adbc (patch)
treed7cf5b1a04f9d645a940c3ed0fedccac2eba5331 /main.c
parentc342aca9655098f66c8bba777a460d56160d9dbd (diff)
downloadwbg-76a79eeac3f49abb048feeb3a8f349db1fc3adbc.tar.gz
main: render: use scaled width/height when compositing image
Diffstat (limited to 'main.c')
-rw-r--r--main.c8
1 files 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);