Home
last modified time | relevance | path

Searched refs:srcSpaceTol (Results 1 – 1 of 1) sorted by relevance

/external/skia/src/gpu/ops/
DGrDefaultPathRenderer.cpp102 void addQuad(const SkPoint pts[], SkScalar srcSpaceTolSqd, SkScalar srcSpaceTol) { in addQuad() argument
110 GrPathUtils::quadraticPointCount(pts, srcSpaceTol)); in addQuad()
119 SkScalar srcSpaceTol) { in addConic()
121 const SkPoint* quadPts = converter.computeQuads(pts, weight, srcSpaceTol); in addConic()
123 this->addQuad(quadPts + i * 2, srcSpaceTolSqd, srcSpaceTol); in addConic()
127 void addCubic(const SkPoint pts[], SkScalar srcSpaceTolSqd, SkScalar srcSpaceTol) { in addCubic() argument
135 GrPathUtils::cubicPointCount(pts, srcSpaceTol)); in addCubic()
143 void addPath(const SkPath& path, SkScalar srcSpaceTol) { in addPath() argument
144 SkScalar srcSpaceTolSqd = srcSpaceTol * srcSpaceTol; in addPath()
160 this->addConic(iter.conicWeight(), pts, srcSpaceTolSqd, srcSpaceTol); in addPath()
[all …]