reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 1 | /* |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 2 | * Copyright 2010 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 8 | #ifndef GrRect_DEFINED |
| 9 | #define GrRect_DEFINED |
| 10 | |
commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 11 | #include "SkTypes.h" |
reed@google.com | 20efde7 | 2011-05-09 17:00:02 +0000 | [diff] [blame] | 12 | #include "SkRect.h" |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 13 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 14 | struct GrIRect16 { |
| 15 | int16_t fLeft, fTop, fRight, fBottom; |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 16 | |
commit-bot@chromium.org | 2f56998 | 2014-04-10 18:36:19 +0000 | [diff] [blame] | 17 | static GrIRect16 SK_WARN_UNUSED_RESULT MakeEmpty() { |
| 18 | GrIRect16 r; |
| 19 | r.setEmpty(); |
| 20 | return r; |
| 21 | } |
| 22 | |
robertphillips | 952841b | 2014-06-30 08:26:50 -0700 | [diff] [blame] | 23 | static GrIRect16 SK_WARN_UNUSED_RESULT MakeWH(int16_t w, int16_t h) { |
| 24 | GrIRect16 r; |
| 25 | r.set(0, 0, w, h); |
| 26 | return r; |
| 27 | } |
| 28 | |
| 29 | static GrIRect16 SK_WARN_UNUSED_RESULT MakeXYWH(int16_t x, int16_t y, int16_t w, int16_t h) { |
| 30 | GrIRect16 r; |
| 31 | r.set(x, y, x + w, y + h); |
| 32 | return r; |
| 33 | } |
| 34 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 35 | int width() const { return fRight - fLeft; } |
| 36 | int height() const { return fBottom - fTop; } |
| 37 | int area() const { return this->width() * this->height(); } |
| 38 | bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; } |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 39 | |
commit-bot@chromium.org | 2f56998 | 2014-04-10 18:36:19 +0000 | [diff] [blame] | 40 | void setEmpty() { memset(this, 0, sizeof(*this)); } |
| 41 | |
robertphillips | 952841b | 2014-06-30 08:26:50 -0700 | [diff] [blame] | 42 | void set(int16_t left, int16_t top, int16_t right, int16_t bottom) { |
| 43 | fLeft = left; |
| 44 | fTop = top; |
| 45 | fRight = right; |
| 46 | fBottom = bottom; |
| 47 | } |
| 48 | |
commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 49 | void set(const SkIRect& r) { |
reed@google.com | 20efde7 | 2011-05-09 17:00:02 +0000 | [diff] [blame] | 50 | fLeft = SkToS16(r.fLeft); |
| 51 | fTop = SkToS16(r.fTop); |
| 52 | fRight = SkToS16(r.fRight); |
| 53 | fBottom = SkToS16(r.fBottom); |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 54 | } |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 55 | }; |
| 56 | |
Brian Salomon | a4677b5 | 2017-05-04 12:39:56 -0400 | [diff] [blame] | 57 | /** Returns true if the rectangles have a nonzero area of overlap. It assumed that rects can be |
| 58 | infinitely small but not "inverted". */ |
| 59 | static inline bool GrRectsOverlap(const SkRect& a, const SkRect& b) { |
Brian Salomon | 1ffda04 | 2017-05-09 18:09:28 -0400 | [diff] [blame] | 60 | // See skbug.com/6607 about the isFinite() checks. |
| 61 | SkASSERT(!a.isFinite() || (a.fLeft <= a.fRight && a.fTop <= a.fBottom)); |
| 62 | SkASSERT(!b.isFinite() || (b.fLeft <= b.fRight && b.fTop <= b.fBottom)); |
Brian Salomon | a4677b5 | 2017-05-04 12:39:56 -0400 | [diff] [blame] | 63 | return a.fRight > b.fLeft && a.fBottom > b.fTop && b.fRight > a.fLeft && b.fBottom > a.fTop; |
| 64 | } |
| 65 | |
| 66 | /** Returns true if the rectangles overlap or share an edge or corner. It assumed that rects can be |
| 67 | infinitely small but not "inverted". */ |
| 68 | static inline bool GrRectsTouchOrOverlap(const SkRect& a, const SkRect& b) { |
Brian Salomon | 1ffda04 | 2017-05-09 18:09:28 -0400 | [diff] [blame] | 69 | // See skbug.com/6607 about the isFinite() checks. |
| 70 | SkASSERT(!a.isFinite() || (a.fLeft <= a.fRight && a.fTop <= a.fBottom)); |
| 71 | SkASSERT(!b.isFinite() || (b.fLeft <= b.fRight && b.fTop <= b.fBottom)); |
Brian Salomon | a4677b5 | 2017-05-04 12:39:56 -0400 | [diff] [blame] | 72 | return a.fRight >= b.fLeft && a.fBottom >= b.fTop && b.fRight >= a.fLeft && b.fBottom >= a.fTop; |
| 73 | } |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 74 | #endif |