15 lines
295 B
C++
15 lines
295 B
C++
|
|
#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
|