aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkRect.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/SkRect.cpp')
-rw-r--r--src/core/SkRect.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/SkRect.cpp b/src/core/SkRect.cpp
index fab1412715..5e3d93c339 100644
--- a/src/core/SkRect.cpp
+++ b/src/core/SkRect.cpp
@@ -37,13 +37,6 @@ void SkIRect::sort() {
/////////////////////////////////////////////////////////////////////////////
-bool SkRect::hasValidCoordinates() const {
- return SkScalarIsFinite(fLeft) &&
- SkScalarIsFinite(fTop) &&
- SkScalarIsFinite(fRight) &&
- SkScalarIsFinite(fBottom);
-}
-
void SkRect::sort() {
if (fLeft > fRight) {
SkTSwap<SkScalar>(fLeft, fRight);