aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkMatrix.h
diff options
context:
space:
mode:
authorGravatar Cary Clark <caryclark@google.com>2017-05-18 15:27:57 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-05-18 20:06:21 +0000
commit0e616cf9e34b306d53fb69a4db76fee02fd1dcc3 (patch)
tree4eba3aa39ae79d345a89b6e60056ce75f446f8c2 /include/core/SkMatrix.h
parent3af1af9e979552cf2e3b22feb1de5aeba810fc4e (diff)
comment SK_API and add fix params
I thought that SK_API on operator== was redundant with SK_API on the enclosing class, and was not needed. Turns out for mac_chromium_debug_ng it is needed. Added comments for history. Meanwhile, bookmaker found some missing and mis-named parameters, so all is not lost. R=reed@google.com Change-Id: I88645666a9d06ec90c5ac133673460d6e6c75528 Reviewed-on: https://skia-review.googlesource.com/17277 Commit-Queue: Cary Clark <caryclark@google.com> Reviewed-by: Mike Reed <reed@google.com>
Diffstat (limited to 'include/core/SkMatrix.h')
-rw-r--r--include/core/SkMatrix.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/core/SkMatrix.h b/include/core/SkMatrix.h
index d408fb12b0..1752f26d13 100644
--- a/include/core/SkMatrix.h
+++ b/include/core/SkMatrix.h
@@ -621,6 +621,7 @@ public:
return 0 == memcmp(fMat, m.fMat, sizeof(fMat));
}
+ // mac chromium dbg requires SK_API to make operator== visible
friend SK_API bool operator==(const SkMatrix& a, const SkMatrix& b);
friend SK_API bool operator!=(const SkMatrix& a, const SkMatrix& b) {
return !(a == b);