Lines Matching full:path
120 // paint the canvas (using the path API)
123 ANPPath* path = gPathI.newPath();
127 gPathI.moveTo(path, 0, 0);
128 gPathI.quadTo(path, cx, cy, W, 0);
129 gPathI.quadTo(path, cx, cy, W, H);
130 gPathI.quadTo(path, cx, cy, 0, H);
131 gPathI.quadTo(path, cx, cy, 0, 0);
134 gCanvasI.drawPath(canvas, path, m_paint);
138 gPathI.getBounds(path, &bounds);
139 gPathI.deletePath(path);