diff options
author | Mike Reed <reed@google.com> | 2018-07-12 09:50:12 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-07-12 14:33:20 +0000 |
commit | 77c138f2cd41cbb0e43985bb458f21455fead646 (patch) | |
tree | 330ea1217411f43516f870aab963202616e94af7 /include | |
parent | 91b5a7690f917efca3892c2ab087ca6e944bafcc (diff) |
remove unneeded scale from procs
Bug: skia:
Change-Id: I85adbbaf0e9d7d23c3f07490a1d323c87e8aa4da
Reviewed-on: https://skia-review.googlesource.com/140980
Reviewed-by: Cary Clark <caryclark@google.com>
Commit-Queue: Mike Reed <reed@google.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/core/SkMatrix.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/core/SkMatrix.h b/include/core/SkMatrix.h index 54615a0f43..6a67de9b8c 100644 --- a/include/core/SkMatrix.h +++ b/include/core/SkMatrix.h @@ -1816,9 +1816,9 @@ private: bool SK_WARN_UNUSED_RESULT invertNonIdentity(SkMatrix* inverse) const; - static bool Poly2Proc(const SkPoint[], SkMatrix*, const SkPoint& scale); - static bool Poly3Proc(const SkPoint[], SkMatrix*, const SkPoint& scale); - static bool Poly4Proc(const SkPoint[], SkMatrix*, const SkPoint& scale); + static bool Poly2Proc(const SkPoint[], SkMatrix*); + static bool Poly3Proc(const SkPoint[], SkMatrix*); + static bool Poly4Proc(const SkPoint[], SkMatrix*); static void Identity_xy(const SkMatrix&, SkScalar, SkScalar, SkPoint*); static void Trans_xy(const SkMatrix&, SkScalar, SkScalar, SkPoint*); |