summaryrefslogtreecommitdiff
path: root/gsk/gskconvexityprivate.h
diff options
context:
space:
mode:
Diffstat (limited to 'gsk/gskconvexityprivate.h')
-rw-r--r--gsk/gskconvexityprivate.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/gsk/gskconvexityprivate.h b/gsk/gskconvexityprivate.h
new file mode 100644
index 0000000000..d7953c037e
--- /dev/null
+++ b/gsk/gskconvexityprivate.h
@@ -0,0 +1,14 @@
+#pragma once
+
+#include "gskcontourprivate.h"
+
+typedef enum
+{
+ GSK_CONVEXITY_UNKNOWN,
+ GSK_CONVEXITY_CONVEX,
+ GSK_CONVEXITY_CONCAVE,
+} GskConvexity;
+
+GskConvexity gsk_contour_compute_convexity (const GskContour *contour);
+
+