Lines Matching full:conics
27 // bloat_quad. Quadratics and conics share an index buffer
211 // and dst[1] are the two new conics.
333 GrAAHairLinePathRenderer::PtArray* conics,
351 // We chop the conics to create tighter clipping to hide error
352 // that appears near max curvature of very thin conics. Thin
369 // when in perspective keep conics in src space
371 SkPoint* pts = conics->push_back_n(3);
778 const PtArray& conics,
817 seedPts[0] = conics[0];
818 seedPts[1] = conics[2];
831 // Start Conics
833 add_conics(&conics[3*i], cWeights[i], toDevice, toSrc, &verts, devBounds);
919 PREALLOC_PTARRAY(128) conics;
923 &lines, &quads, &conics, &qSubdivs, &cWeights);
925 conicCnt = conics.count() / 3;
973 // then quadratics/conics
982 conics,
1034 int conics = 0;
1035 while (conics < conicCnt) {
1036 int n = GrMin(conicCnt - conics, kNumQuadsInIdxBuffer);
1038 kVertsPerQuad*(quadCnt + conics), // startV
1043 conics += n;