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

  /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/jmonkeyengine/engine/src/tools/jme3tools/optimize/
Octnode.java 112 public void subdivide(int depth, int minTrisPerNode){ method in class:Octnode
114 // no need to subdivide anymore
164 children[i].subdivide(depth + 1, minTrisPerNode);
169 public void subdivide(int minTrisPerNode){ method in class:Octnode
170 subdivide(0, minTrisPerNode);
  /external/skia/src/gpu/
GrPathUtils.cpp 49 // Each time we subdivide, d should be cut in 4. So we need to
50 // subdivide x = log4(d/tol) times. x subdivisions creates 2^(x)
495 bool subdivide = false; local
513 // We need to subdivide if d0 + d1 > tolerance but we have the sqd values. We know
518 subdivide = 2 * d0d1 + d0Sqd + d1Sqd > toleranceSqd;
521 if (!subdivide) {

Completed in 319 milliseconds