Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Chris Craik | 91eff22 | 2016-02-22 13:39:33 -0800 | [diff] [blame] | 17 | #pragma once |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 18 | |
Chris Craik | 91eff22 | 2016-02-22 13:39:33 -0800 | [diff] [blame] | 19 | #include "Vertex.h" |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 20 | |
Romain Guy | 5cbbce5 | 2010-06-27 22:59:20 -0700 | [diff] [blame] | 21 | #include <utils/Log.h> |
| 22 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 23 | #include <SkRect.h> |
Chris Craik | 91eff22 | 2016-02-22 13:39:33 -0800 | [diff] [blame] | 24 | #include <algorithm> |
| 25 | #include <cmath> |
| 26 | #include <iomanip> |
| 27 | #include <ostream> |
Chris Craik | 32f05e3 | 2013-09-17 16:20:29 -0700 | [diff] [blame] | 28 | |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 29 | namespace android { |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 30 | namespace uirenderer { |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 31 | |
Chris Craik | 62d307c | 2014-07-29 10:35:13 -0700 | [diff] [blame] | 32 | #define RECT_STRING "%5.2f %5.2f %5.2f %5.2f" |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 33 | #define RECT_ARGS(r) (r).left, (r).top, (r).right, (r).bottom |
| 34 | #define SK_RECT_ARGS(r) (r).left(), (r).top(), (r).right(), (r).bottom() |
Chris Craik | 28ce94a | 2013-05-31 11:38:03 -0700 | [diff] [blame] | 35 | |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 36 | /////////////////////////////////////////////////////////////////////////////// |
| 37 | // Structs |
| 38 | /////////////////////////////////////////////////////////////////////////////// |
| 39 | |
Mathias Agopian | 83b186a | 2011-09-19 16:00:46 -0700 | [diff] [blame] | 40 | class Rect { |
Mathias Agopian | 83b186a | 2011-09-19 16:00:46 -0700 | [diff] [blame] | 41 | public: |
Romain Guy | 7ae7ac4 | 2010-06-25 13:46:18 -0700 | [diff] [blame] | 42 | float left; |
| 43 | float top; |
| 44 | float right; |
| 45 | float bottom; |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 46 | |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 47 | // Used by Region |
| 48 | typedef float value_type; |
| 49 | |
Mathias Agopian | 83b186a | 2011-09-19 16:00:46 -0700 | [diff] [blame] | 50 | // we don't provide copy-ctor and operator= on purpose |
| 51 | // because we want the compiler generated versions |
| 52 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 53 | inline Rect() : left(0), top(0), right(0), bottom(0) {} |
Romain Guy | 9d5316e | 2010-06-24 19:30:36 -0700 | [diff] [blame] | 54 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 55 | inline Rect(float left, float top, float right, float bottom) |
| 56 | : left(left), top(top), right(right), bottom(bottom) {} |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 57 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 58 | inline Rect(float width, float height) : left(0.0f), top(0.0f), right(width), bottom(height) {} |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 59 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 60 | inline Rect(const SkIRect& rect) |
| 61 | : // NOLINT, implicit |
| 62 | left(rect.fLeft) |
| 63 | , top(rect.fTop) |
| 64 | , right(rect.fRight) |
| 65 | , bottom(rect.fBottom) {} |
Chris Craik | 82457c5 | 2016-06-29 16:22:27 -0700 | [diff] [blame] | 66 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 67 | inline Rect(const SkRect& rect) |
| 68 | : // NOLINT, implicit |
| 69 | left(rect.fLeft) |
| 70 | , top(rect.fTop) |
| 71 | , right(rect.fRight) |
| 72 | , bottom(rect.fBottom) {} |
ztenghui | af6f7ed | 2014-03-18 17:25:49 -0700 | [diff] [blame] | 73 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 74 | friend int operator==(const Rect& a, const Rect& b) { return !memcmp(&a, &b, sizeof(a)); } |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 75 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 76 | friend int operator!=(const Rect& a, const Rect& b) { return memcmp(&a, &b, sizeof(a)); } |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 77 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 78 | inline void clear() { left = top = right = bottom = 0.0f; } |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 79 | |
| 80 | inline bool isEmpty() const { |
Mathias Agopian | 83b186a | 2011-09-19 16:00:46 -0700 | [diff] [blame] | 81 | // this is written in such way this it'll handle NANs to return |
| 82 | // true (empty) |
| 83 | return !((left < right) && (top < bottom)); |
Romain Guy | 7ae7ac4 | 2010-06-25 13:46:18 -0700 | [diff] [blame] | 84 | } |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 85 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 86 | inline void setEmpty() { left = top = right = bottom = 0.0f; } |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 87 | |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 88 | inline void set(float left, float top, float right, float bottom) { |
Romain Guy | 7ae7ac4 | 2010-06-25 13:46:18 -0700 | [diff] [blame] | 89 | this->left = left; |
| 90 | this->right = right; |
| 91 | this->top = top; |
| 92 | this->bottom = bottom; |
| 93 | } |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 94 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 95 | inline void set(const Rect& r) { set(r.left, r.top, r.right, r.bottom); } |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 96 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 97 | inline void set(const SkIRect& r) { set(r.left(), r.top(), r.right(), r.bottom()); } |
Rob Tsuk | 487a92c | 2015-01-06 13:22:54 -0800 | [diff] [blame] | 98 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 99 | inline float getWidth() const { return right - left; } |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 100 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 101 | inline float getHeight() const { return bottom - top; } |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 102 | |
Mathias Agopian | 83b186a | 2011-09-19 16:00:46 -0700 | [diff] [blame] | 103 | bool intersects(float l, float t, float r, float b) const { |
Chris Craik | ac02eb9 | 2015-10-05 12:23:46 -0700 | [diff] [blame] | 104 | float tempLeft = std::max(left, l); |
| 105 | float tempTop = std::max(top, t); |
| 106 | float tempRight = std::min(right, r); |
| 107 | float tempBottom = std::min(bottom, b); |
| 108 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 109 | return ((tempLeft < tempRight) && (tempTop < tempBottom)); // !isEmpty |
Romain Guy | 7ae7ac4 | 2010-06-25 13:46:18 -0700 | [diff] [blame] | 110 | } |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 111 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 112 | bool intersects(const Rect& r) const { return intersects(r.left, r.top, r.right, r.bottom); } |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 113 | |
Chris Craik | ac02eb9 | 2015-10-05 12:23:46 -0700 | [diff] [blame] | 114 | /** |
| 115 | * This method is named 'doIntersect' instead of 'intersect' so as not to be confused with |
| 116 | * SkRect::intersect / android.graphics.Rect#intersect behavior, which do not modify the object |
| 117 | * if the intersection of the rects would be empty. |
| 118 | */ |
| 119 | void doIntersect(float l, float t, float r, float b) { |
| 120 | left = std::max(left, l); |
| 121 | top = std::max(top, t); |
| 122 | right = std::min(right, r); |
| 123 | bottom = std::min(bottom, b); |
Romain Guy | 7ae7ac4 | 2010-06-25 13:46:18 -0700 | [diff] [blame] | 124 | } |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 125 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 126 | void doIntersect(const Rect& r) { doIntersect(r.left, r.top, r.right, r.bottom); } |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 127 | |
Romain Guy | 2db5e99 | 2013-05-21 15:29:59 -0700 | [diff] [blame] | 128 | inline bool contains(float l, float t, float r, float b) const { |
Romain Guy | ec31f83 | 2011-12-13 18:39:19 -0800 | [diff] [blame] | 129 | return l >= left && t >= top && r <= right && b <= bottom; |
| 130 | } |
| 131 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 132 | inline bool contains(const Rect& r) const { return contains(r.left, r.top, r.right, r.bottom); } |
Romain Guy | ec31f83 | 2011-12-13 18:39:19 -0800 | [diff] [blame] | 133 | |
Romain Guy | 079ba2c | 2010-07-16 14:12:24 -0700 | [diff] [blame] | 134 | bool unionWith(const Rect& r) { |
| 135 | if (r.left < r.right && r.top < r.bottom) { |
| 136 | if (left < right && top < bottom) { |
| 137 | if (left > r.left) left = r.left; |
| 138 | if (top > r.top) top = r.top; |
| 139 | if (right < r.right) right = r.right; |
| 140 | if (bottom < r.bottom) bottom = r.bottom; |
| 141 | return true; |
| 142 | } else { |
| 143 | left = r.left; |
| 144 | top = r.top; |
| 145 | right = r.right; |
| 146 | bottom = r.bottom; |
| 147 | return true; |
| 148 | } |
| 149 | } |
| 150 | return false; |
| 151 | } |
| 152 | |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 153 | void translate(float dx, float dy) { |
| 154 | left += dx; |
| 155 | right += dx; |
| 156 | top += dy; |
| 157 | bottom += dy; |
| 158 | } |
| 159 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 160 | void inset(float delta) { outset(-delta); } |
Chris Craik | e4aa95e | 2014-05-08 13:57:05 -0700 | [diff] [blame] | 161 | |
Chris Craik | c3566d0 | 2013-02-04 16:16:33 -0800 | [diff] [blame] | 162 | void outset(float delta) { |
| 163 | left -= delta; |
| 164 | top -= delta; |
| 165 | right += delta; |
| 166 | bottom += delta; |
| 167 | } |
| 168 | |
Chris Craik | 05f3d6e | 2014-06-02 16:27:04 -0700 | [diff] [blame] | 169 | void outset(float xdelta, float ydelta) { |
| 170 | left -= xdelta; |
| 171 | top -= ydelta; |
| 172 | right += xdelta; |
| 173 | bottom += ydelta; |
| 174 | } |
| 175 | |
Chris Craik | 5e49b30 | 2013-07-30 19:05:20 -0700 | [diff] [blame] | 176 | /** |
Chris Craik | 32f05e3 | 2013-09-17 16:20:29 -0700 | [diff] [blame] | 177 | * Similar to snapToPixelBoundaries, but estimates bounds conservatively to handle GL rounding |
| 178 | * errors. |
Chris Craik | 5e49b30 | 2013-07-30 19:05:20 -0700 | [diff] [blame] | 179 | * |
Chris Craik | 32f05e3 | 2013-09-17 16:20:29 -0700 | [diff] [blame] | 180 | * This function should be used whenever estimating the damage rect of geometry already mapped |
| 181 | * into layer space. |
Chris Craik | 5e49b30 | 2013-07-30 19:05:20 -0700 | [diff] [blame] | 182 | */ |
Chris Craik | 32f05e3 | 2013-09-17 16:20:29 -0700 | [diff] [blame] | 183 | void snapGeometryToPixelBoundaries(bool snapOut) { |
| 184 | if (snapOut) { |
| 185 | /* For AA geometry with a ramp perimeter, don't snap by rounding - AA geometry will have |
| 186 | * a 0.5 pixel perimeter not accounted for in its bounds. Instead, snap by |
| 187 | * conservatively rounding out the bounds with floor/ceil. |
| 188 | * |
| 189 | * In order to avoid changing integer bounds with floor/ceil due to rounding errors |
| 190 | * inset the bounds first by the fudge factor. Very small fraction-of-a-pixel errors |
| 191 | * from this inset will only incur similarly small errors in output, due to transparency |
| 192 | * in extreme outside of the geometry. |
| 193 | */ |
Chris Craik | 564acf7 | 2014-01-02 16:46:18 -0800 | [diff] [blame] | 194 | left = floorf(left + Vertex::GeometryFudgeFactor()); |
| 195 | top = floorf(top + Vertex::GeometryFudgeFactor()); |
| 196 | right = ceilf(right - Vertex::GeometryFudgeFactor()); |
| 197 | bottom = ceilf(bottom - Vertex::GeometryFudgeFactor()); |
Chris Craik | 32f05e3 | 2013-09-17 16:20:29 -0700 | [diff] [blame] | 198 | } else { |
| 199 | /* For other geometry, we do the regular rounding in order to snap, but also outset the |
| 200 | * bounds by a fudge factor. This ensures that ambiguous geometry (e.g. a non-AA Rect |
| 201 | * with top left at (0.5, 0.5)) will err on the side of a larger damage rect. |
| 202 | */ |
Chris Craik | 564acf7 | 2014-01-02 16:46:18 -0800 | [diff] [blame] | 203 | left = floorf(left + 0.5f - Vertex::GeometryFudgeFactor()); |
| 204 | top = floorf(top + 0.5f - Vertex::GeometryFudgeFactor()); |
| 205 | right = floorf(right + 0.5f + Vertex::GeometryFudgeFactor()); |
| 206 | bottom = floorf(bottom + 0.5f + Vertex::GeometryFudgeFactor()); |
Chris Craik | 32f05e3 | 2013-09-17 16:20:29 -0700 | [diff] [blame] | 207 | } |
Chris Craik | 5e49b30 | 2013-07-30 19:05:20 -0700 | [diff] [blame] | 208 | } |
| 209 | |
Romain Guy | bf43411 | 2010-09-16 14:40:17 -0700 | [diff] [blame] | 210 | void snapToPixelBoundaries() { |
Romain Guy | ae88e5e | 2010-10-22 17:49:18 -0700 | [diff] [blame] | 211 | left = floorf(left + 0.5f); |
| 212 | top = floorf(top + 0.5f); |
| 213 | right = floorf(right + 0.5f); |
| 214 | bottom = floorf(bottom + 0.5f); |
Romain Guy | bf43411 | 2010-09-16 14:40:17 -0700 | [diff] [blame] | 215 | } |
| 216 | |
Chris Craik | f0a5907 | 2013-11-19 18:00:46 -0800 | [diff] [blame] | 217 | void roundOut() { |
| 218 | left = floorf(left); |
| 219 | top = floorf(top); |
| 220 | right = ceilf(right); |
| 221 | bottom = ceilf(bottom); |
| 222 | } |
| 223 | |
Chris Craik | 15c3f19 | 2015-12-03 12:16:56 -0800 | [diff] [blame] | 224 | /* |
| 225 | * Similar to unionWith, except this makes the assumption that both rects are non-empty |
| 226 | * to avoid both emptiness checks. |
| 227 | */ |
| 228 | void expandToCover(const Rect& other) { |
| 229 | left = std::min(left, other.left); |
| 230 | top = std::min(top, other.top); |
| 231 | right = std::max(right, other.right); |
| 232 | bottom = std::max(bottom, other.bottom); |
| 233 | } |
| 234 | |
| 235 | void expandToCover(float x, float y) { |
Chris Craik | df72b63 | 2015-06-30 17:56:13 -0700 | [diff] [blame] | 236 | left = std::min(left, x); |
| 237 | top = std::min(top, y); |
| 238 | right = std::max(right, x); |
| 239 | bottom = std::max(bottom, y); |
Chris Craik | c93e45c | 2014-07-16 10:15:56 -0700 | [diff] [blame] | 240 | } |
| 241 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 242 | SkRect toSkRect() const { return SkRect::MakeLTRB(left, top, right, bottom); } |
Rob Tsuk | 487a92c | 2015-01-06 13:22:54 -0800 | [diff] [blame] | 243 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 244 | SkIRect toSkIRect() const { return SkIRect::MakeLTRB(left, top, right, bottom); } |
Rob Tsuk | 487a92c | 2015-01-06 13:22:54 -0800 | [diff] [blame] | 245 | |
Chris Craik | e84a208 | 2014-12-22 14:28:49 -0800 | [diff] [blame] | 246 | void dump(const char* label = nullptr) const { |
Chris Craik | 8ecf41c | 2015-11-16 10:27:59 -0800 | [diff] [blame] | 247 | ALOGD("%s[l=%.2f t=%.2f r=%.2f b=%.2f]", label ? label : "Rect", left, top, right, bottom); |
Romain Guy | 7ae7ac4 | 2010-06-25 13:46:18 -0700 | [diff] [blame] | 248 | } |
Chris Craik | 91eff22 | 2016-02-22 13:39:33 -0800 | [diff] [blame] | 249 | |
| 250 | friend std::ostream& operator<<(std::ostream& os, const Rect& rect) { |
| 251 | if (rect.isEmpty()) { |
Chris Craik | 034a10b | 2016-03-09 16:03:21 -0800 | [diff] [blame] | 252 | // Print empty, but continue, since empty rects may still have useful coordinate info |
| 253 | os << "(empty)"; |
Chris Craik | 91eff22 | 2016-02-22 13:39:33 -0800 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | if (rect.left == 0 && rect.top == 0) { |
| 257 | return os << "[" << rect.right << " x " << rect.bottom << "]"; |
| 258 | } |
| 259 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 260 | return os << "[" << rect.left << " " << rect.top << " " << rect.right << " " << rect.bottom |
| 261 | << "]"; |
Chris Craik | 91eff22 | 2016-02-22 13:39:33 -0800 | [diff] [blame] | 262 | } |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 263 | }; // class Rect |
Romain Guy | bb9524b | 2010-06-22 18:56:38 -0700 | [diff] [blame] | 264 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 265 | }; // namespace uirenderer |
| 266 | }; // namespace android |