Home
last modified time | relevance | path

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

/external/skia/src/gpu/
DGrTextContext.cpp158 const SkPath* iterPath; in drawTextAsPath() local
161 while (iter.next(&iterPath, &xpos)) { in drawTextAsPath()
163 if (iterPath) { in drawTextAsPath()
165 fGpuDevice->internalDrawPath(*iterPath, pnt, viewMatrix, &matrix, clipBounds, false); in drawTextAsPath()
/external/skia/src/core/
DSkDevice.cpp346 const SkPath* iterPath; in drawTextOnPath() local
353 while (iter.next(&iterPath, &xpos)) { in drawTextOnPath()
354 if (iterPath) { in drawTextOnPath()
363 morphpath(&tmp, *iterPath, meas, m); in drawTextOnPath()
DSkPaint.cpp1190 const SkPath* iterPath; in getTextPath() local
1191 while (iter.next(&iterPath, &xpos)) { in getTextPath()
1193 if (iterPath) { in getTextPath()
1194 path->addPath(*iterPath, matrix); in getTextPath()
1218 const SkPath* iterPath; in getPosTextPath() local
1219 while (iter.next(&iterPath, NULL)) { in getPosTextPath()
1221 if (iterPath) { in getPosTextPath()
1222 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()
1425 fDevice->drawPath(*this, *iterPath, pnt, &matrix, false); in drawText_asPaths()
1427 this->drawPath(*iterPath, pnt, &matrix, false); in drawText_asPaths()