From b3e9ae6c0ca200f6e1021258d4d6562b1e3e9458 Mon Sep 17 00:00:00 2001 From: bsalomon Date: Mon, 12 Sep 2016 09:05:48 -0700 Subject: Remove unneeded bounds outset in GrDrawContext::drawVertices. GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2329403004 Review-Url: https://codereview.chromium.org/2329403004 --- src/gpu/GrDrawContext.cpp | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/gpu/GrDrawContext.cpp') diff --git a/src/gpu/GrDrawContext.cpp b/src/gpu/GrDrawContext.cpp index 78615df606..50965ba86f 100644 --- a/src/gpu/GrDrawContext.cpp +++ b/src/gpu/GrDrawContext.cpp @@ -764,14 +764,6 @@ void GrDrawContext::drawVertices(const GrClip& clip, viewMatrix.mapRect(&bounds); - // If we don't have AA then we outset for a half pixel in each direction to account for - // snapping. We also do this for the "hair" primitive types: lines and points since they have - // a 1 pixel thickness in device space. - if (!paint.isAntiAlias() || GrIsPrimTypeLines(primitiveType) || - kPoints_GrPrimitiveType == primitiveType) { - bounds.outset(0.5f, 0.5f); - } - SkAutoTUnref batch(new GrDrawVerticesBatch(paint.getColor(), primitiveType, viewMatrix, positions, vertexCount, indices, indexCount, -- cgit v1.2.3