Export SkPath equality operator.

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
This commit is contained in:
wjmaclean@chromium.org 2012-09-06 18:42:03 +00:00
parent 8b62c60e96
commit 22023bea1b

View 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.