aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar Cary Clark <caryclark@skia.org>2017-10-12 15:33:28 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-10-12 19:56:31 +0000
commit708ec81d7a9bba12cd7e574b5c5ae80b2ad77919 (patch)
treeab62212c793e00eaab3e17372c75e67005d67675 /include
parent2e67dea9d361dc80ed27a10c57efdd66e227e3c7 (diff)
move SkMatrix anonymous affine enum to private
enum members aren't used by SkMatrix.h or by clients outside of Skia. R: reed@google.com, bungeman@google.com Bug: skia:6898 Change-Id: I6873b4106e5ffe354caf5ec18cc613910304fa13 Reviewed-on: https://skia-review.googlesource.com/59160 Reviewed-by: Mike Reed <reed@google.com> Reviewed-by: Ben Wagner <bungeman@google.com> Commit-Queue: Cary Clark <caryclark@skia.org>
Diffstat (limited to 'include')
-rw-r--r--include/core/SkMatrix.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/core/SkMatrix.h b/include/core/SkMatrix.h
index 6e9f421264..863d470dc4 100644
--- a/include/core/SkMatrix.h
+++ b/include/core/SkMatrix.h
@@ -126,18 +126,6 @@ public:
kMPersp2,
};
- /** Affine arrays are in column major order
- because that's how PDF and XPS like it.
- */
- enum {
- kAScaleX,
- kASkewY,
- kASkewX,
- kAScaleY,
- kATransX,
- kATransY,
- };
-
SkScalar operator[](int index) const {
SkASSERT((unsigned)index < 9);
return fMat[index];