diff options
author | Daniel Eklöf <daniel@ekloef.se> | 2020-09-20 12:20:21 +0200 |
---|---|---|
committer | Daniel Eklöf <daniel@ekloef.se> | 2020-09-20 12:20:21 +0200 |
commit | 76a79eeac3f49abb048feeb3a8f349db1fc3adbc (patch) | |
tree | d7cf5b1a04f9d645a940c3ed0fedccac2eba5331 /main.c | |
parent | c342aca9655098f66c8bba777a460d56160d9dbd (diff) | |
download | wbg-76a79eeac3f49abb048feeb3a8f349db1fc3adbc.tar.gz |
main: render: use scaled width/height when compositing image
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -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); |