msdfgen-sys 0.2.1

Unsafe bindings for msdfgen (multi-channel signed distance field generator)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

#pragma once

#include "../core/Shape.h"

#ifdef MSDFGEN_USE_SKIA

namespace msdfgen {

/// Resolves any intersections within the shape by subdividing its contours using the Skia library and makes sure its contours have a consistent winding.
bool resolveShapeGeometry(Shape &shape);

}

#endif