Home
last modified time | relevance | path

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

/external/skia/src/core/
DSkDevice.cpp381 const SkPath* iterPath; in drawTextOnPath() local
388 while (iter.next(&iterPath, &xpos)) { in drawTextOnPath()
389 if (iterPath) { in drawTextOnPath()
398 morphpath(&tmp, *iterPath, meas, m); in drawTextOnPath()
DSkPaint.cpp1148 const SkPath* iterPath; in getTextPath() local
1149 while (iter.next(&iterPath, &xpos)) { in getTextPath()
1151 if (iterPath) { in getTextPath()
1152 path->addPath(*iterPath, matrix); in getTextPath()
1193 const SkPath* iterPath; in getPosTextPath() local
1194 while (iter.next(&iterPath, nullptr)) { in getPosTextPath()
1196 if (iterPath) { in getPosTextPath()
1197 path->addPath(*iterPath, matrix); in getPosTextPath()
DSkDraw.cpp1420 const SkPath* iterPath; in drawText_asPaths() local
1423 while (iter.next(&iterPath, &xpos)) { in drawText_asPaths()
1425 if (iterPath) { in drawText_asPaths()
1428 fDevice->drawPath(*this, *iterPath, pnt, &matrix, false); in drawText_asPaths()
1430 this->drawPath(*iterPath, pnt, &matrix, false); in drawText_asPaths()
/external/skia/src/gpu/text/
DGrTextUtils.cpp477 const SkPath* iterPath; in DrawTextAsPath() local
480 while (iter.next(&iterPath, &xpos)) { in DrawTextAsPath()
482 if (iterPath) { in DrawTextAsPath()
484 GrBlurUtils::drawPathWithMaskFilter(context, dc, clip, *iterPath, in DrawTextAsPath()