aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/aaa.cpp
diff options
context:
space:
mode:
authorGravatar Yuqian Li <liyuqian@google.com>2018-04-18 15:09:44 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-04-18 19:52:43 +0000
commit63f69cdc326b2bbd4361aa4997f41a197a08d2f0 (patch)
tree6c06da5c66bf79dbef234ad645dfa50400233599 /gm/aaa.cpp
parent64f75eecdd09c83c5bd59511c3bb9f53c256d587 (diff)
Reland "Fix the fat rect bug in the threaded backend"
This reverts commit 1b637615144604a2d50cf983ac9aa5aab71cf73b. Reason for revert: add guard flag Original change's description: > Revert "Fix the fat rect bug in the threaded backend" > > This reverts commit c41569a29fde10c6fec43cc4593334e9a4b34b76. > > Reason for revert: maybe break the Chrome layout tests > > Original change's description: > > Fix the fat rect bug in the threaded backend > > > > Bug: skia:7813 > > Change-Id: I954232be1dccc63ce412ccde92c4f0e4617317b9 > > Reviewed-on: https://skia-review.googlesource.com/121641 > > Reviewed-by: Cary Clark <caryclark@google.com> > > Commit-Queue: Yuqian Li <liyuqian@google.com> > > TBR=caryclark@google.com,liyuqian@google.com,reed@google.com > > Change-Id: If35617a9774b3367561981e39a2fa89a972684b9 > No-Presubmit: true > No-Tree-Checks: true > No-Try: true > Bug: skia:7813 > Reviewed-on: https://skia-review.googlesource.com/121820 > Reviewed-by: Yuqian Li <liyuqian@google.com> > Commit-Queue: Yuqian Li <liyuqian@google.com> TBR=caryclark@google.com,liyuqian@google.com,reed@google.com # Not skipping CQ checks because original CL landed > 1 day ago. Bug: skia:7813 Change-Id: I8b17be4251b5efc20142295cca787474f32e3a86 Reviewed-on: https://skia-review.googlesource.com/122100 Commit-Queue: Yuqian Li <liyuqian@google.com> Reviewed-by: Yuqian Li <liyuqian@google.com>
Diffstat (limited to 'gm/aaa.cpp')
-rw-r--r--gm/aaa.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/gm/aaa.cpp b/gm/aaa.cpp
index 910ce19988..b2fc6337d9 100644
--- a/gm/aaa.cpp
+++ b/gm/aaa.cpp
@@ -44,6 +44,7 @@ protected:
y += 200;
+ canvas->save();
canvas->translate(0, y);
canvas->rotate(1);
canvas->drawRect({ 20, 20, 20.2f, 200 }, p);
@@ -78,6 +79,7 @@ protected:
// skbug.com/7573
y += 200;
+ canvas->save();
canvas->translate(0, y);
p.setAntiAlias(true);
path.reset();
@@ -87,6 +89,15 @@ protected:
path.lineTo(1.93990216f, 10.5837256f);
canvas->drawPath(path, p);
canvas->restore();
+
+ // skbug.com/7813
+ // t8888 splits the 800-high canvas into 3 pieces; the boundary is close to 266 and 534
+ path.reset();
+ path.moveTo(700, 266);
+ path.lineTo(710, 266);
+ path.lineTo(710, 534);
+ path.lineTo(700, 534);
+ canvas->drawPath(path, p);
}
private: