• Home
  • Raw
  • Download

Lines Matching refs:devPts

255         SkPoint devPts[4];  in gather_lines_and_quads()  local
266 m.mapPoints(devPts, chopPnts, 3); in gather_lines_and_quads()
267 bounds.setBounds(devPts, 3); in gather_lines_and_quads()
271 if (is_degen_quad_or_conic(devPts)) { in gather_lines_and_quads()
273 pts[0] = devPts[0]; in gather_lines_and_quads()
274 pts[1] = devPts[1]; in gather_lines_and_quads()
275 pts[2] = devPts[1]; in gather_lines_and_quads()
276 pts[3] = devPts[2]; in gather_lines_and_quads()
279 SkPoint* cPts = persp ? chopPnts : devPts; in gather_lines_and_quads()
293 m.mapPoints(devPts, pathPts, 2); in gather_lines_and_quads()
294 bounds.setBounds(devPts, 2); in gather_lines_and_quads()
299 pts[0] = devPts[0]; in gather_lines_and_quads()
300 pts[1] = devPts[1]; in gather_lines_and_quads()
313 m.mapPoints(devPts, quadPts, 3); in gather_lines_and_quads()
314 bounds.setBounds(devPts, 3); in gather_lines_and_quads()
319 int subdiv = num_quad_subdivs(devPts); in gather_lines_and_quads()
323 pts[0] = devPts[0]; in gather_lines_and_quads()
324 pts[1] = devPts[1]; in gather_lines_and_quads()
325 pts[2] = devPts[1]; in gather_lines_and_quads()
326 pts[3] = devPts[2]; in gather_lines_and_quads()
329 SkPoint* qPts = persp ? quadPts : devPts; in gather_lines_and_quads()
342 m.mapPoints(devPts, pathPts, 4); in gather_lines_and_quads()
343 bounds.setBounds(devPts, 4); in gather_lines_and_quads()
355 GrPathUtils::convertCubicToQuads(devPts, SK_Scalar1, &q); in gather_lines_and_quads()
362 m.mapPoints(devPts, &q[i], 3); in gather_lines_and_quads()
363 bounds.setBounds(devPts, 3); in gather_lines_and_quads()
364 qInDevSpace = devPts; in gather_lines_and_quads()