Export SkPath equality operator.
authorwjmaclean@chromium.org <wjmaclean@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>
Thu, 6 Sep 2012 18:42:03 +0000 (18:42 +0000)
committerwjmaclean@chromium.org <wjmaclean@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>
Thu, 6 Sep 2012 18:42:03 +0000 (18:42 +0000)
This change will allow external access to the SkPath equality operator.

BUG=none

Review URL: https://codereview.appspot.com/6500079

git-svn-id: http://skia.googlecode.com/svn/trunk@5418 2bbb7eff-a529-9590-31e7-b0007b416f81

src/core/SkPath.cpp

index dd9249d..c6e349b 100644 (file)
@@ -186,7 +186,7 @@ SkPath& SkPath::operator=(const SkPath& src) {
     return *this;
 }
 
-bool operator==(const SkPath& a, const SkPath& b) {
+SK_API bool operator==(const SkPath& a, const SkPath& b) {
     // note: don't need to look at isConvex or bounds, since just comparing the
     // raw data is sufficient.