diff options
author | Sertonix <sertonix@posteo.net> | 2024-08-02 15:53:00 +0200 |
---|---|---|
committer | Sertonix <sertonix@posteo.net> | 2024-08-02 15:56:58 +0200 |
commit | 74ecbee9035b71c685413e99eae3798c858a2a83 (patch) | |
tree | 2e7b3a1b8bb1f9251639e51fd86e6c2d24b6f1fb /main.c | |
parent | 685705f8259b7e2b21522d5b4d01e7e75e20b8e7 (diff) | |
download | wbg-74ecbee9035b71c685413e99eae3798c858a2a83.tar.gz |
main: exclude svg only code when svg is not enabled
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -90,16 +90,17 @@ render(struct output *output) return; pixman_image_t *src = image; +#if defined(WBG_HAVE_SVG) bool is_svg = false; +#endif #if defined(WBG_HAVE_SVG) if (!src) { src = svg_render(width * scale, height * scale, stretch); is_svg = true; - } + } else #endif - - if (!is_svg) { + { double sx = (double)(width * scale) / pixman_image_get_width(src); double sy = (double)(height * scale) / pixman_image_get_height(src); double s = stretch ? fmax(sx, sy) : fmin(sx, sy); @@ -117,10 +118,12 @@ render(struct output *output) pixman_image_composite32(PIXMAN_OP_SRC, src, NULL, buf->pix, 0, 0, 0, 0, 0, 0, width * scale, height * scale); +#if defined(WBG_HAVE_SVG) if (is_svg) { free(pixman_image_get_data(src)); pixman_image_unref(src); } +#endif wl_surface_set_buffer_scale(output->surf, scale); wl_surface_attach(output->surf, buf->wl_buf, 0, 0); |