Searched refs:iterPath (Results 1 – 8 of 8) sorted by relevance
/external/skqp/src/gpu/text/ |
D | GrTextUtils.cpp | 94 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/ |
D | SkDevice.cpp | 447 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()
|
D | SkPaint.cpp | 1075 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()
|
D | SkDraw.cpp | 1364 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/ |
D | SkDevice.cpp | 448 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()
|
D | SkPaint.cpp | 1075 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()
|
D | SkDraw.cpp | 1391 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/ |
D | GrAtlasTextContext.cpp | 465 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()
|