HomeSort by relevance Sort by last modified time
    Searched refs:maxPts (Results 1 - 2 of 2) sorted by null

  /external/skia/src/gpu/
GrDefaultPathRenderer.cpp 198 int maxPts = GrPathUtils::worstCasePointCount(path, &contourCnt,
201 if (maxPts <= 0) {
204 if (maxPts > ((int)SK_MaxU16 + 1)) {
205 GrPrintf("Path not rendered, too many verts (%d)\n", maxPts);
221 maxIdxs = 2 * maxPts;
228 maxIdxs = 3 * maxPts;
236 if (!target->reserveVertexSpace(layout, maxPts, (void**)&base)) {
321 GrAssert((vert - base) <= maxPts);
GrTesselatedPathRenderer.cpp 369 int maxPts = GrPathUtils::worstCasePointCount(path, &subpathCnt, tol);
380 maxPts += 4;
383 if (maxPts > USHRT_MAX) {
386 SkAutoSTMalloc<8, GrPoint> baseMem(maxPts);
460 GrAssert((vert - base) <= maxPts);

Completed in 2491 milliseconds