aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkDraw_vertices.cpp
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2018-04-25 13:04:05 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-04-25 17:34:27 +0000
commit910ca0fd014ad9263e54e0cfa4199768b6c7fade (patch)
tree4e8556bb2e6f27868dbc32e173c682ce8dc91e42 /src/core/SkDraw_vertices.cpp
parentf0db23633f754cc3888494ea8d37e5dd8d495bfd (diff)
Experiment to track coverage in a layer
Bug: skia: Change-Id: I5ed334f63e64991944394dc8103092a2c6280546 Reviewed-on: https://skia-review.googlesource.com/122000 Commit-Queue: Mike Reed <reed@google.com> Reviewed-by: Mike Klein <mtklein@google.com>
Diffstat (limited to 'src/core/SkDraw_vertices.cpp')
-rw-r--r--src/core/SkDraw_vertices.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/SkDraw_vertices.cpp b/src/core/SkDraw_vertices.cpp
index 810ded1307..8c1ad1f007 100644
--- a/src/core/SkDraw_vertices.cpp
+++ b/src/core/SkDraw_vertices.cpp
@@ -294,7 +294,7 @@ void SkDraw::drawVertices(SkVertices::VertexMode vmode, int count,
// no colors[] and no texture, stroke hairlines with paint's color.
SkPaint p;
p.setStyle(SkPaint::kStroke_Style);
- SkAutoBlitterChoose blitter(fDst, *fMatrix, p);
+ SkAutoBlitterChoose blitter(*this, nullptr, p);
// Abort early if we failed to create a shader context.
if (blitter->isNullBlitter()) {
return;