Home
last modified time | relevance | path

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

/external/skia/src/gpu/
DGrTessellator.cpp1344 int maxPts = GrPathUtils::worstCasePointCount(path, contourCnt, tolerance); in get_contour_count_and_size_estimate() local
1345 if (maxPts <= 0) { in get_contour_count_and_size_estimate()
1349 if (maxPts > ((int)SK_MaxU16 + 1)) { in get_contour_count_and_size_estimate()
1350 SkDebugf("Path not rendered, too many verts (%d)\n", maxPts); in get_contour_count_and_size_estimate()
1358 *sizeEstimate = maxPts * (3 * sizeof(Vertex) + sizeof(Edge)); in get_contour_count_and_size_estimate()
/external/skia/src/gpu/batches/
DGrPLSPathRenderer.cpp141 int maxPts = GrPathUtils::worstCasePointCount(path, &contourCnt, tol); in get_geometry() local
142 if (maxPts <= 0) { in get_geometry()