ofxMsdfgen/libs/msdf-atlas-gen/include/msdfgen/ext/resolve-shape-geometry.h

16 lines
295 B
C
Raw Normal View History

#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