aboutsummaryrefslogtreecommitdiff
path: root/svg.h
diff options
context:
space:
mode:
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();