Home
last modified time | relevance | path

Searched refs:mappedPts (Results 1 – 2 of 2) sorted by relevance

/external/skia/src/gpu/ganesh/ops/
DLatticeOp.cpp352 SkPoint mappedPts[4]; in onPrepareDraws() local
353 patch.fViewMatrix.mapRectToQuad(mappedPts, dstR); in onPrepareDraws()
359 vertices << mappedPts[0] in onPrepareDraws()
363 vertices << mappedPts[3] in onPrepareDraws()
367 vertices << mappedPts[1] in onPrepareDraws()
371 vertices << mappedPts[2] in onPrepareDraws()
/external/skia/src/core/
DSkPath.cpp1497 SkPoint mappedPts[3]; in addPath() local
1500 mapPtsProc(matrix, mappedPts, &pts[0], 1); in addPath()
1505 if (!this->getLastPt(&lastPt) || lastPt != mappedPts[0]) { in addPath()
1506 this->lineTo(mappedPts[0]); in addPath()
1509 this->moveTo(mappedPts[0]); in addPath()
1513 mapPtsProc(matrix, mappedPts, &pts[1], 1); in addPath()
1514 this->lineTo(mappedPts[0]); in addPath()
1517 mapPtsProc(matrix, mappedPts, &pts[1], 2); in addPath()
1518 this->quadTo(mappedPts[0], mappedPts[1]); in addPath()
1521 mapPtsProc(matrix, mappedPts, &pts[1], 2); in addPath()
[all …]