Searched defs:subdivide (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/skia/samplecode/
H A DSampleCull.cpp30 static void subdivide(SkPath* path, SkScalar bump) { function
122 subdivide(&fPath, bump);
123 subdivide(&fPath, bump);
124 subdivide(&fPath, bump);
/external/skia/samplecode/
H A DSampleCull.cpp30 static void subdivide(SkPath* path, SkScalar bump) { function
122 subdivide(&fPath, bump);
123 subdivide(&fPath, bump);
124 subdivide(&fPath, bump);
/external/chromium_org/third_party/skia/src/gpu/
H A DGrPathUtils.cpp50 // Each time we subdivide, d should be cut in 4. So we need to
51 // subdivide x = log4(d/tol) times. x subdivisions creates 2^(x)
478 bool subdivide = false; local
496 // We need to subdivide if d0 + d1 > tolerance but we have the sqd values. We know
501 subdivide = 2 * d0d1 + d0Sqd + d1Sqd > toleranceSqd;
504 if (!subdivide) {
/external/skia/src/gpu/
H A DGrPathUtils.cpp50 // Each time we subdivide, d should be cut in 4. So we need to
51 // subdivide x = log4(d/tol) times. x subdivisions creates 2^(x)
478 bool subdivide = false; local
496 // We need to subdivide if d0 + d1 > tolerance but we have the sqd values. We know
501 subdivide = 2 * d0d1 + d0Sqd + d1Sqd > toleranceSqd;
504 if (!subdivide) {

Completed in 454 milliseconds