Searched refs:iterPath (Results 1 – 4 of 4) sorted by relevance
/external/skia/src/gpu/ |
D | GrTextContext.cpp | 158 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/ |
D | SkDevice.cpp | 346 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()
|
D | SkPaint.cpp | 1190 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()
|
D | SkDraw.cpp | 1417 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()
|