/external/skia/src/gpu/batches/ |
GrDefaultPathRenderer.cpp | 14 #include "GrPathUtils.h" 201 GrPathUtils::generateQuadraticPoints( 204 GrPathUtils::quadraticPointCount(pts, srcSpaceTol)); 285 maxVertices += GrPathUtils::worstCasePointCount(args.fPath, &contourCount, 496 uint16_t numPts = (uint16_t) GrPathUtils::generateCubicPoints( 499 GrPathUtils::cubicPointCount(pts, srcSpaceTol)); 665 SkScalar tol = GrPathUtils::kDefaultTolerance; 666 SkScalar srcSpaceTol = GrPathUtils::scaleToleranceToSrc(tol, viewMatrix, path.getBounds()); 765 SkScalar tol = GrPathUtils::kDefaultTolerance; 766 SkScalar srcSpaceTol = GrPathUtils::scaleToleranceToSrc(tol, viewMatrix, bounds) [all...] |
GrTessellatingPathRenderer.cpp | 13 #include "GrPathUtils.h" 126 SkScalar screenSpaceTol = GrPathUtils::kDefaultTolerance; 128 SkScalar tol = GrPathUtils::scaleToleranceToSrc(screenSpaceTol, fViewMatrix, pathBounds); 164 SkScalar screenSpaceTol = GrPathUtils::kDefaultTolerance; 165 SkScalar tol = GrPathUtils::scaleToleranceToSrc(
|
GrAAHairLinePathRenderer.cpp | 16 #include "GrPathUtils.h" 174 static const SkScalar gDegenerateToLineTol = GrPathUtils::kDefaultTolerance; 352 GrPathUtils::scaleToleranceToSrc(SK_Scalar1, m, path.getBounds()); 353 GrPathUtils::convertCubicToQuads(pathPts, tolScale, &q); 355 GrPathUtils::convertCubicToQuads(devPts, SK_Scalar1, &q); 445 GrPathUtils::QuadUVMatrix DevToUV(qpts); 527 // k, l, m are calculated in function GrPathUtils::getConicKLM 532 GrPathUtils::getConicKLM(p, weight, klm); [all...] |
GrPLSPathRenderer.cpp | 23 #include "GrPathUtils.h" 83 GrPathUtils::QuadUVMatrix DevToUV(pts); 138 SkScalar screenSpaceTol = GrPathUtils::kDefaultTolerance; 139 SkScalar tol = GrPathUtils::scaleToleranceToSrc(screenSpaceTol, m, bounds); 141 int maxPts = GrPathUtils::worstCasePointCount(path, &contourCnt, tol); 177 GrPathUtils::convertCubicToQuads(pts, kCubicTolerance, &quads); [all...] |
GrAAConvexTessellator.cpp | 13 #include "GrPathUtils.h" 862 int maxCount = GrPathUtils::quadraticPointCount(pts, kQuadTolerance); 865 int count = GrPathUtils::generateQuadraticPoints(pts[0], pts[1], pts[2], [all...] |
GrAAConvexPathRenderer.cpp | 19 #include "GrPathUtils.h" 257 GrPathUtils::convertCubicToQuadsConstrainToTangents(pts, SK_Scalar1, dir, &quads); 484 GrPathUtils::QuadUVMatrix toUV(qpts); [all...] |
/external/skia/src/gpu/ |
GrPathUtils.cpp | 8 #include "GrPathUtils.h" 13 SkScalar GrPathUtils::scaleToleranceToSrc(SkScalar devTol, 38 uint32_t GrPathUtils::quadraticPointCount(const SkPoint points[], 70 uint32_t GrPathUtils::generateQuadraticPoints(const SkPoint& p0, 95 uint32_t GrPathUtils::cubicPointCount(const SkPoint points[], 126 uint32_t GrPathUtils::generateCubicPoints(const SkPoint& p0, 156 int GrPathUtils::worstCasePointCount(const SkPath& path, int* subpaths, 206 void GrPathUtils::QuadUVMatrix::set(const SkPoint qPts[3]) { 328 void GrPathUtils::getConicKLM(const SkPoint p[3], const SkScalar weight, SkScalar klm[9]) { 546 void GrPathUtils::convertCubicToQuads(const SkPoint p[4] [all...] |
GrPathUtils.h | 20 namespace GrPathUtils {
|
GrTessellator.cpp | 13 #include "GrPathUtils.h" 567 int pointsLeft = GrPathUtils::quadraticPointCount(quadPts, tolerance); 589 int pointsLeft = GrPathUtils::quadraticPointCount(pts, tolerance); 596 int pointsLeft = GrPathUtils::cubicPointCount(pts, tolerance); [all...] |
/external/skia/gm/ |
beziereffects.cpp | 17 #include "GrPathUtils.h" 181 int cnt = GrPathUtils::chopCubicAtLoopIntersection(controlPts, 324 GrPathUtils::getConicKLM(controlPts, weight, klmEqs); 434 const GrPathUtils::QuadUVMatrix& devToUV) { 440 const GrPathUtils::QuadUVMatrix& devToUV) 477 GrPathUtils::QuadUVMatrix fDevToUV; 597 GrPathUtils::QuadUVMatrix DevToUV(pts);
|
/external/skia/ |
Android.mk | 406 src/gpu/GrPathUtils.cpp \
|