Home
last modified time | relevance | path

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

/external/skia/src/core/
DSkDevice.cpp416 const SkPath* iterPath; in drawTextOnPath() local
423 while (iter.next(&iterPath, &xpos)) { in drawTextOnPath()
424 if (iterPath) { in drawTextOnPath()
433 morphpath(&tmp, *iterPath, meas, m); in drawTextOnPath()
DSkPaint.cpp1078 const SkPath* iterPath; in getTextPath() local
1079 while (iter.next(&iterPath, &xpos)) { in getTextPath()
1081 if (iterPath) { in getTextPath()
1082 path->addPath(*iterPath, matrix); in getTextPath()
1106 const SkPath* iterPath; in getPosTextPath() local
1107 while (iter.next(&iterPath, nullptr)) { in getPosTextPath()
1109 if (iterPath) { in getPosTextPath()
1110 path->addPath(*iterPath, matrix); in getPosTextPath()
DSkDraw.cpp1417 const SkPath* iterPath; in drawText_asPaths() local
1420 while (iter.next(&iterPath, &xpos)) { in drawText_asPaths()
1422 if (iterPath) { in drawText_asPaths()
1423 this->drawPath(*iterPath, iter.getPaint(), &matrix, false); in drawText_asPaths()
/external/skia/src/gpu/text/
DGrTextUtils.cpp495 const SkPath* iterPath; in DrawTextAsPath() local
498 while (iter.next(&iterPath, &xpos)) { in DrawTextAsPath()
500 if (iterPath) { in DrawTextAsPath()
502 GrBlurUtils::drawPathWithMaskFilter(context, rtc, clip, *iterPath, in DrawTextAsPath()