Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Unified Diff: include/pathops/SkPathOps.h

Issue 18912002: Export SkPathOps.h functions for external use. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/pathops/SkPathOps.h
diff --git a/include/pathops/SkPathOps.h b/include/pathops/SkPathOps.h
index bde77e8732d2b30b1919fcce183c9483076d416a..a98f4ea4d6d55f5d3b891c426d165bf8a79c6f05 100644
--- a/include/pathops/SkPathOps.h
+++ b/include/pathops/SkPathOps.h
@@ -7,6 +7,8 @@
#ifndef SkPathOps_DEFINED
#define SkPathOps_DEFINED
+#include "SkPreConfig.h"
+
class SkPath;
// FIXME: move everything below into the SkPath class
@@ -36,7 +38,7 @@ enum SkPathOp {
inputs.
@return True if operation succeeded.
*/
-bool Op(const SkPath& one, const SkPath& two, SkPathOp op, SkPath* result);
+bool SK_API Op(const SkPath& one, const SkPath& two, SkPathOp op, SkPath* result);
/** Set this path to a set of non-overlapping contours that describe the
same area as the original path.
@@ -50,6 +52,6 @@ bool Op(const SkPath& one, const SkPath& two, SkPathOp op, SkPath* result);
@param result The simplified path. The result may be the input.
@return True if simplification succeeded.
*/
-bool Simplify(const SkPath& path, SkPath* result);
+bool SK_API Simplify(const SkPath& path, SkPath* result);
#endif
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698