Searched refs:pathPts (Results 1 - 4 of 4) sorted by relevance
/third_party/skia/tests/ |
H A D | SkPathRangeIterTest.cpp | 96 auto [pathVerb, pathPts, pathWt] = *iter++; in DEF_TEST() 99 REPORTER_ASSERT(r, pathPts[0] == startPt); in DEF_TEST() 100 lastPt = pathPts[0]; in DEF_TEST() 103 REPORTER_ASSERT(r, pathPts[0] == testData.p()); in DEF_TEST() 104 startPt = lastPt = pathPts[0]; in DEF_TEST() 107 REPORTER_ASSERT(r, pathPts[0] == lastPt); in DEF_TEST() 108 REPORTER_ASSERT(r, pathPts[1] == testData.p()); in DEF_TEST() 109 lastPt = pathPts[1]; in DEF_TEST() 112 REPORTER_ASSERT(r, pathPts[0] == lastPt); in DEF_TEST() 113 REPORTER_ASSERT(r, pathPts[ in DEF_TEST() [all...] |
/third_party/skia/src/gpu/ops/ |
H A D | AAHairLinePathRenderer.cpp | 323 SkPoint pathPts[4]; in gather_lines_and_quads() local 324 SkPath::Verb verb = iter.next(pathPts); in gather_lines_and_quads() 330 const SkPoint* quadPts = converter.computeQuads(pathPts, weight, 0.25f); in gather_lines_and_quads() 339 int conicCnt = chop_conic(pathPts, dst, iter.conicWeight()); in gather_lines_and_quads() 386 m.mapPoints(devPts, pathPts, 2); in gather_lines_and_quads() 409 int n = SkChopQuadAtMaxCurvature(pathPts, choppedPts); in gather_lines_and_quads() 418 m.mapPoints(devPts, pathPts, 4); in gather_lines_and_quads() 429 GrPathUtils::convertCubicToQuads(pathPts, tolScale, &q); in gather_lines_and_quads() 455 m.mapPoints(devPts, pathPts, 1); in gather_lines_and_quads()
|
/third_party/skia/samplecode/ |
H A D | SampleQuadStroker.cpp | 621 SkPath pathPts; variable 622 pathPts.moveTo(fPts[10]); 623 pathPts.lineTo(fPts[11]); 624 pathPts.lineTo(fPts[12]); 625 draw_points(canvas, pathPts, SK_ColorDKGRAY, true);
|
/third_party/skia/src/core/ |
H A D | SkScan_Hairline.cpp | 580 auto [pathVerb, pathPts, w] = *iter++; 583 memcpy(pts, pathPts, SkPathPriv::PtsInIter(verb) * sizeof(SkPoint));
|
Completed in 8 milliseconds