diff options
author | Chris Craik <ccraik@google.com> | 2013-06-13 14:39:01 -0700 |
---|---|---|
committer | Chris Craik <ccraik@google.com> | 2013-06-13 16:16:13 -0700 |
commit | 39a908c1df89e1073627b0dcbce922d826b67055 (patch) | |
tree | ff2549616c210443c773bef7c1c35391d8ee6d99 /libs/hwui/Rect.h | |
parent | 6db1054692495be7413d0fcc49a0f26c179d6fed (diff) |
Fix various draw ops that may incorrectly not scissor
bug:8965976
Also consolidates quickReject scissor-ing and scissor-less paths.
Renamed plain 'quickReject' method, as it has sideEffects beyond what
the java and skia canvases do.
Change-Id: I4bdf874d3c8f469d283eae1e71c5e7ea53d47016
Diffstat (limited to 'libs/hwui/Rect.h')
-rw-r--r-- | libs/hwui/Rect.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/Rect.h b/libs/hwui/Rect.h index 87c6c1051fc8..7531769081b0 100644 --- a/libs/hwui/Rect.h +++ b/libs/hwui/Rect.h @@ -24,7 +24,7 @@ namespace android { namespace uirenderer { -#define RECT_STRING "%4.2f %4.2f %4.2f %4.2f" +#define RECT_STRING "%7.2f %7.2f %7.2f %7.2f" #define RECT_ARGS(r) \ (r).left, (r).top, (r).right, (r).bottom |