aboutsummaryrefslogtreecommitdiff
path: root/svg.h
blob: ffc766f82f60270d61628197c045e2ca66580b9b (plain) (blame)
1
2
3
4
5
6
7
8
9
#pragma once

#include <stdio.h>
#include <stdbool.h>
#include <pixman.h>

bool svg_load(FILE *fp, const char *path);
pixman_image_t *svg_render(const int width, const int height, bool stretch);
void svg_free();