Home | History | Annotate | Download | only in gpu

Lines Matching refs:lines

31 // lines are rendered as:
245 // in this case approx the path with lines
269 // if it returns -1 then should be drawn as lines
320 * Generates the lines and quads to be rendered. Lines are always recorded in
331 GrAAHairLinePathRenderer::PtArray* lines,
363 SkPoint* pts = lines->push_back_n(4);
389 SkPoint* pts = lines->push_back_n(2);
397 // When it is degenerate it allows the approximation with lines to work since the
413 SkPoint* pts = lines->push_back_n(4);
469 SkPoint* pts = lines->push_back_n(4);
470 // lines should always be in device coords
733 const PtArray& lines,
760 devBounds->set(lines.begin(), lines.count());
762 add_line(&lines[2*i], toSrc, drawState->getCoverageColor(), &verts);
917 PREALLOC_PTARRAY(128) lines;
923 &lines, &quads, &conics, &qSubdivs, &cWeights);
924 lineCnt = lines.count() / 2;
927 // do lines first
934 lines,
959 int lines = 0;
960 while (lines < lineCnt) {
961 int n = GrMin(lineCnt - lines, kNumLineSegsInIdxBuffer);
963 kVertsPerLineSeg*lines, // startV
968 lines += n;