aboutsummaryrefslogtreecommitdiff
path: root/svg.h
diff options
context:
space:
mode:
authorSertonix <sertonix@posteo.net>2024-07-28 01:04:53 +0200
committerDaniel Eklöf <daniel@ekloef.se>2024-07-28 17:00:44 +0200
commitd6c4779f8b8c7dd74cfffea3d27ecc6cc50ab53a (patch)
tree4218e286434c2df942df86ba51b0286b1e6ecae1 /svg.h
parenta1f26161cf68e7a74fc83f0a605d16732637b5d7 (diff)
downloadwbg-d6c4779f8b8c7dd74cfffea3d27ecc6cc50ab53a.tar.gz
svg: rasterize with output resolution
Diffstat (limited to 'svg.h')
-rw-r--r--svg.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/svg.h b/svg.h
index d8fb6eb..89a6253 100644
--- a/svg.h
+++ b/svg.h
@@ -1,6 +1,9 @@
#pragma once
#include <stdio.h>
+#include <stdbool.h>
#include <pixman.h>
-pixman_image_t *svg_load(FILE *fp, const char *path);
+bool svg_load(FILE *fp, const char *path);
+pixman_image_t *svg_render(const int width, const int height);
+void svg_free();