diff options
Diffstat (limited to 'libs/hwui/Rect.h')
-rw-r--r-- | libs/hwui/Rect.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libs/hwui/Rect.h b/libs/hwui/Rect.h index 2ddbbd71709f..846ebdcbd6d5 100644 --- a/libs/hwui/Rect.h +++ b/libs/hwui/Rect.h @@ -186,6 +186,13 @@ public: bottom += delta; } + void outset(float xdelta, float ydelta) { + left -= xdelta; + top -= ydelta; + right += xdelta; + bottom += ydelta; + } + /** * Similar to snapToPixelBoundaries, but estimates bounds conservatively to handle GL rounding * errors. |