/external/chromium_org/third_party/skia/include/core/ |
SkGeometry.h | 240 * return the power-of-2 number of quads needed to approximate this conic 246 * Chop this conic into N quads, stored continguously in pts[], where 263 * Help class to allocate storage for approximating a conic with N quads. 270 * Given a conic and a tolerance, return the array of points for the 281 const SkPoint* computeQuads(const SkConic& conic, SkScalar tol) { 282 int pow2 = conic.computeQuadPOW2(tol); 285 conic.chopIntoQuadsPOW2(pts, pow2); 291 SkConic conic; local 292 conic.set(pts, weight); 293 return computeQuads(conic, tol) [all...] |
/external/skia/include/core/ |
SkGeometry.h | 240 * return the power-of-2 number of quads needed to approximate this conic 246 * Chop this conic into N quads, stored continguously in pts[], where 263 * Help class to allocate storage for approximating a conic with N quads. 270 * Given a conic and a tolerance, return the array of points for the 281 const SkPoint* computeQuads(const SkConic& conic, SkScalar tol) { 282 int pow2 = conic.computeQuadPOW2(tol); 285 conic.chopIntoQuadsPOW2(pts, pow2); 291 SkConic conic; local 292 conic.set(pts, weight); 293 return computeQuads(conic, tol) [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkEdgeBuilder.cpp | 211 SkConic conic; local 212 conic.set(pts, iter.conicWeight()); 213 int pow2 = conic.computeQuadPOW2(conicTol); 215 int quadCount = conic.chopIntoQuadsPOW2(storage, pow2); 254 SkConic conic; local 255 conic.set(pts, iter.conicWeight()); 256 int pow2 = conic.computeQuadPOW2(conicTol); 258 int quadCount = conic.chopIntoQuadsPOW2(storage, pow2);
|
/external/skia/src/core/ |
SkEdgeBuilder.cpp | 211 SkConic conic; local 212 conic.set(pts, iter.conicWeight()); 213 int pow2 = conic.computeQuadPOW2(conicTol); 215 int quadCount = conic.chopIntoQuadsPOW2(storage, pow2); 254 SkConic conic; local 255 conic.set(pts, iter.conicWeight()); 256 int pow2 = conic.computeQuadPOW2(conicTol); 258 int quadCount = conic.chopIntoQuadsPOW2(storage, pow2);
|
/external/skia/gm/ |
beziereffects.cpp | 333 // where to chop the conic. If the max curvature is not 335 // dst[0] is the original conic. If it returns 2 the dst[0] 346 SkConic conic; local 347 conic.set(src, weight); 348 conic.chopAt(t, dst); 354 // Calls split_conic on the entire conic and then once more on each subsection. 355 // Most cases will result in either 1 conic (chop point is not within t range)
|
/external/chromium_org/third_party/skia/src/gpu/ |
GrAAHairLinePathRenderer.cpp | 208 // where to chop the conic. If the max curvature is not 210 // dst[0] is the original conic. If it returns 2 the dst[0] 221 SkConic conic; local 222 conic.set(src, weight); 223 conic.chopAt(t, dst); 229 // Calls split_conic on the entire conic and then once more on each subsection. 230 // Most cases will result in either 1 conic (chop point is not within t range) 244 // returns 0 if quad/conic is degen or close to it 810 // Seed the dev bounds with some pts known to be inside. Each quad and conic grows the bounding [all...] |
/external/skia/src/gpu/ |
GrAAHairLinePathRenderer.cpp | 208 // where to chop the conic. If the max curvature is not 210 // dst[0] is the original conic. If it returns 2 the dst[0] 221 SkConic conic; local 222 conic.set(src, weight); 223 conic.chopAt(t, dst); 229 // Calls split_conic on the entire conic and then once more on each subsection. 230 // Most cases will result in either 1 conic (chop point is not within t range) 244 // returns 0 if quad/conic is degen or close to it 810 // Seed the dev bounds with some pts known to be inside. Each quad and conic grows the bounding [all...] |