Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: src/gpu/GrPathRenderer.cpp

Issue 15465005: Reland path bounds change with correct bounds for convex and hairline path renderers. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: tighter tolerances Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #include "GrPathRenderer.h" 9 #include "GrPathRenderer.h"
10 10
11 SK_DEFINE_INST_COUNT(GrPathRenderer) 11 SK_DEFINE_INST_COUNT(GrPathRenderer)
12 12
13 GrPathRenderer::GrPathRenderer() { 13 GrPathRenderer::GrPathRenderer() {
14 } 14 }
15
16 void GrPathRenderer::GetPathDevBounds(const SkPath& path,
17 int devW, int devH,
18 const SkMatrix& matrix,
19 SkRect* bounds) {
20 if (path.isInverseFillType()) {
21 *bounds = SkRect::MakeWH(SkIntToScalar(devW), SkIntToScalar(devH));
22 return;
23 }
24 *bounds = path.getBounds();
25 matrix.mapRect(bounds);
26 }
OLDNEW
« src/gpu/GrAAHairLinePathRenderer.cpp ('K') | « src/gpu/GrPathRenderer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698