aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkMatrix.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/SkMatrix.cpp')
-rw-r--r--src/core/SkMatrix.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/core/SkMatrix.cpp b/src/core/SkMatrix.cpp
index 4f94013d3c..31ff4b15e3 100644
--- a/src/core/SkMatrix.cpp
+++ b/src/core/SkMatrix.cpp
@@ -769,16 +769,6 @@ static double sk_inv_determinant(const float mat[9], int isPerspective) {
return 1.0 / det;
}
-bool SkMatrix::isFinite() const {
- for (int i = 0; i < 9; ++i) {
- if (!SkScalarIsFinite(fMat[i])) {
- return false;
- }
- }
-
- return true;
-}
-
void SkMatrix::SetAffineIdentity(SkScalar affine[6]) {
affine[kAScaleX] = 1;
affine[kASkewY] = 0;