Home
last modified time | relevance | path

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

/external/skqp/src/gpu/text/
DGrTextUtils.cpp94 const SkPath* iterPath; in DrawBigText() local
97 while (iter.next(&iterPath, &xpos)) { in DrawBigText()
99 if (iterPath) { in DrawBigText()
101 target->drawPath(clip, *iterPath, pnt, viewMatrix, &matrix, clipBounds); in DrawBigText()
/external/skqp/src/core/
DSkDevice.cpp447 const SkPath* iterPath; in drawTextOnPath() local
454 while (iter.next(&iterPath, &xpos)) { in drawTextOnPath()
455 if (iterPath) { in drawTextOnPath()
464 morphpath(&tmp, *iterPath, meas, m); in drawTextOnPath()
DSkPaint.cpp1075 const SkPath* iterPath; in getTextPath() local
1076 while (iter.next(&iterPath, &xpos)) { in getTextPath()
1078 if (iterPath) { in getTextPath()
1079 path->addPath(*iterPath, matrix); in getTextPath()
1103 const SkPath* iterPath; in getPosTextPath() local
1104 while (iter.next(&iterPath, nullptr)) { in getPosTextPath()
1106 if (iterPath) { in getPosTextPath()
1107 path->addPath(*iterPath, matrix); in getPosTextPath()
DSkDraw.cpp1364 const SkPath* iterPath; in drawText_asPaths() local
1367 while (iter.next(&iterPath, &xpos)) { in drawText_asPaths()
1369 if (iterPath) { in drawText_asPaths()
1370 this->drawPath(*iterPath, iter.getPaint(), &matrix, false); in drawText_asPaths()
/external/skia/src/core/
DSkDevice.cpp448 const SkPath* iterPath; in drawTextOnPath() local
455 while (iter.next(&iterPath, &xpos)) { in drawTextOnPath()
456 if (iterPath) { in drawTextOnPath()
465 morphpath(&tmp, *iterPath, meas, m); in drawTextOnPath()
DSkPaint.cpp1075 const SkPath* iterPath; in getTextPath() local
1076 while (iter.next(&iterPath, &xpos)) { in getTextPath()
1078 if (iterPath) { in getTextPath()
1079 path->addPath(*iterPath, matrix); in getTextPath()
1103 const SkPath* iterPath; in getPosTextPath() local
1104 while (iter.next(&iterPath, nullptr)) { in getPosTextPath()
1106 if (iterPath) { in getPosTextPath()
1107 path->addPath(*iterPath, matrix); in getPosTextPath()
DSkDraw.cpp1391 const SkPath* iterPath; in drawText_asPaths() local
1394 while (iter.next(&iterPath, &xpos)) { in drawText_asPaths()
1396 if (iterPath) { in drawText_asPaths()
1397 this->drawPath(*iterPath, iter.getPaint(), &matrix, false); in drawText_asPaths()
/external/skia/src/gpu/text/
DGrAtlasTextContext.cpp465 const SkPath* iterPath; in DrawBmpTextAsPaths() local
468 while (iter.next(&iterGlyph, &iterPath, &xpos)) { in DrawBmpTextAsPaths()
472 } else if (iterPath) { in DrawBmpTextAsPaths()
473 blob->appendPathGlyph(runIndex, *iterPath, xpos + x, y, iter.getPathScale(), false); in DrawBmpTextAsPaths()