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

  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
CachedPathIteratorFactory.java 41 int nPoints = getNumberOfPoints(type) * 2; // 2 coordinates per point
44 float[] itemPoints = new float[nPoints];
45 System.arraycopy(points, 0, itemPoints, 0, nPoints);
ShadowPath.java 134 int nPoints = points.size();
135 float[] result = new float[nPoints * 3];
140 for (int i = 0; i < nPoints; i++) {
  /external/skia/src/gpu/
GrTessellator.cpp 698 int nPoints = 1;
702 while (nPoints < GrPathUtils::kMaxPointsPerCurve) {
703 u = 1.0f / nPoints;
707 nPoints++;
709 for (int j = 1; j <= nPoints; j++) {
    [all...]
  /external/skqp/src/gpu/
GrTessellator.cpp 698 int nPoints = 1;
702 while (nPoints < GrPathUtils::kMaxPointsPerCurve) {
703 u = 1.0f / nPoints;
707 nPoints++;
709 for (int j = 1; j <= nPoints; j++) {
    [all...]

Completed in 125 milliseconds