HomeSort by relevance Sort by last modified time
    Searched defs:subdivide (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/skia/samplecode/
SampleCull.cpp 30 static void subdivide(SkPath* path, SkScalar bump) { function
122 subdivide(&fPath, bump);
123 subdivide(&fPath, bump);
124 subdivide(&fPath, bump);
  /external/skia/samplecode/
SampleCull.cpp 30 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/
GrPathUtils.cpp 50 // 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/
GrPathUtils.cpp 50 // 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 224 milliseconds