aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkCanvas.cpp
diff options
context:
space:
mode:
authorGravatar fmalita <fmalita@chromium.org>2016-01-07 10:34:46 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-01-07 10:34:46 -0800
commitc7e211acd0c9201688de7ff0c9a2271c67440adf (patch)
treec21a3f91ab7e063f9874f90ad62d6a970340ad87 /src/core/SkCanvas.cpp
parentb7f4b8e94e2414d17eb68a9ceae42b2eea38e604 (diff)
SkTreatAsSprite should take AA into account
Currently we always call SkTreatAsSprite with 0 subpixel bits, which means subpixel translations are ignored. This is incorrect for the anti-aliased case (drawSprite always pixel-snaps, so we lose edge AA). The CL updates SkTreatAsSprite to take an SkPaint argument and use 8 subpixel bits when AA is requested. Also remove unused SkTreatAsSpriteFilter. BUG=skia:4761 R=reed@google.com GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1566943002 Committed: https://skia.googlesource.com/skia/+/983dc2541a729609037a05eba731b3eb9788c517 Review URL: https://codereview.chromium.org/1566943002
Diffstat (limited to 'src/core/SkCanvas.cpp')
-rw-r--r--src/core/SkCanvas.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/SkCanvas.cpp b/src/core/SkCanvas.cpp
index e5ca9ce6c1..a4acbdc94d 100644
--- a/src/core/SkCanvas.cpp
+++ b/src/core/SkCanvas.cpp
@@ -2220,8 +2220,7 @@ bool SkCanvas::canDrawBitmapAsSprite(SkScalar x, SkScalar y, int w, int h, const
}
const SkMatrix& ctm = this->getTotalMatrix();
- const unsigned kSubpixelBits = 0; // matching SkDraw::drawBitmap()
- if (!SkTreatAsSprite(ctm, w, h, kSubpixelBits)) {
+ if (!SkTreatAsSprite(ctm, SkISize::Make(w, h), paint)) {
return false;
}