| Index: src/gpu/SkGpuDevice.cpp
|
| diff --git a/src/gpu/SkGpuDevice.cpp b/src/gpu/SkGpuDevice.cpp
|
| index f0206d69c05e44d2e68f66a440da57553cdb05d4..61de9822f48ed44770b86534ae0da1906ca270a7 100644
|
| --- a/src/gpu/SkGpuDevice.cpp
|
| +++ b/src/gpu/SkGpuDevice.cpp
|
| @@ -598,10 +598,9 @@ void SkGpuDevice::drawPoints(const SkDraw& draw, SkCanvas::PointMode mode,
|
| return;
|
| }
|
|
|
| - // we only handle non-AA hairlines and paints without path effects or mask filters,
|
| + // we only handle hairlines and paints without path effects or mask filters,
|
| // else we let the SkDraw call our drawPath()
|
| - bool requiresAA = paint.isAntiAlias() && !fRenderTarget->isMultisampled();
|
| - if (requiresAA || width > 0 || paint.getPathEffect() || paint.getMaskFilter()) {
|
| + if (width > 0 || paint.getPathEffect() || paint.getMaskFilter()) {
|
| draw.drawPoints(mode, count, pts, paint, true);
|
| return;
|
| }
|
|
|