aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2014-08-18 11:10:37 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-08-18 11:10:37 -0700
commit62b67ae96e94fd22569b058a3bc4625b9f52ed56 (patch)
tree7783f6c8fca68a4d4591c85fb70dff398f5c000f /tests
parented265558a6a1d3b99eed76fcc0758f9a92319365 (diff)
Start actually bounding some draw ops.
This covers most of the common draws. BUG=skia: R=robertphillips@google.com, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/469213007
Diffstat (limited to 'tests')
-rw-r--r--tests/RecordDrawTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/RecordDrawTest.cpp b/tests/RecordDrawTest.cpp
index e850dfee4c..91ed2f06a9 100644
--- a/tests/RecordDrawTest.cpp
+++ b/tests/RecordDrawTest.cpp
@@ -137,6 +137,6 @@ DEF_TEST(RecordDraw_BBH, r) {
for (int i = 0; i < bbh.entries.count(); i++) {
REPORTER_ASSERT(r, bbh.entries[i].data == (uintptr_t)i);
- REPORTER_ASSERT(r, bbh.entries[i].bounds == SkIRect::MakeWH(400, 500));
+ REPORTER_ASSERT(r, bbh.entries[i].bounds == SkIRect::MakeWH(400, 480));
}
}