aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar reed <reed@google.com>2014-10-15 07:05:09 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-10-15 07:05:09 -0700
commit157f36d358814a2235aa6284b78a67b725076063 (patch)
tree194f439b95cb243ab6978ae5ec839b4ddb39b3a3 /include
parenta365947babca873d14e843ccd74098e8c69d65ef (diff)
add tests for large cordinates bounds when building aaclip
BUG=skia: TBR= Review URL: https://codereview.chromium.org/658753002
Diffstat (limited to 'include')
-rw-r--r--include/core/SkRect.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/core/SkRect.h b/include/core/SkRect.h
index 995beb8662..96bf0f4d90 100644
--- a/include/core/SkRect.h
+++ b/include/core/SkRect.h
@@ -75,6 +75,8 @@ struct SK_API SkIRect {
*/
int height() const { return fBottom - fTop; }
+ SkISize size() const { return SkISize::Make(this->width(), this->height()); }
+
/**
* Since the center of an integer rect may fall on a factional value, this
* method is defined to return (right + left) >> 1.