-
-
Notifications
You must be signed in to change notification settings - Fork 504
Expand file tree
/
Copy pathmsdfgen-ext.h
More file actions
27 lines (24 loc) · 740 Bytes
/
msdfgen-ext.h
File metadata and controls
27 lines (24 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#pragma once
/*
* MULTI-CHANNEL SIGNED DISTANCE FIELD GENERATOR
* ---------------------------------------------
* A utility by Viktor Chlumsky, (c) 2014 - 2025
*
* The extension module provides ways to easily load input and save output using popular formats.
*
* Third party dependencies in extension module:
* - Skia by Google
* (to resolve self-intersecting paths)
* - FreeType 2
* (to load input font files)
* - TinyXML 2 by Lee Thomason
* (to aid in parsing input SVG files)
* - libpng by the PNG Development Group
* - or LodePNG by Lode Vandevenne
* (to save output PNG images)
*
*/
#include "ext/resolve-shape-geometry.h"
#include "ext/save-png.h"
#include "ext/import-svg.h"
#include "ext/import-font.h"