HomeSort by relevance Sort by last modified time
    Searched refs:countPoints (Results 1 - 25 of 26) sorted by null

1 2

  /external/skia/include/core/
SkPathRef.h 247 int countPoints() const { SkDEBUGCODE(this->validate();) return fPointCnt; }
267 * Shortcut for this->points() + this->countPoints()
269 const SkPoint* pointsEnd() const { return this->points() + this->countPoints(); }
348 return bounds->setBoundsCheck(ref.points(), ref.countPoints());
SkPath.h 309 int countPoints() const;
312 (i.e. is not 0 <= index < countPoints()) then the returned coordinates
    [all...]
  /external/skia/tests/
ParsePathTest.cpp 128 REPORTER_ASSERT(r, path.countPoints() == gTests[i].fPoints);
EmptyPathTest.cpp 51 paint.isAntiAlias(), path.getFillType(), path.countPoints());
PathTest.cpp     [all...]
  /external/skia/src/core/
SkPathRef.cpp 138 SkASSERT((*dst)->countPoints() == src.countPoints());
143 bool canXformBounds = !src.fBoundsIsDirty && matrix.rectStaysRect() && src.countPoints() > 1;
258 SkASSERT(pointCount == ref->countPoints());
272 pCount != ref->countPoints() || cCount != ref->fConicWeights.count()) {
309 int oldPCnt = (*pathRef)->countPoints();
426 int count = out->countPoints() * 2;
SkPath.cpp 374 SkASSERT(2 == fPathRef->countPoints());
595 pts = fPathRef->points() + fPathRef->countPoints();
624 int SkPath::countPoints() const {
625 return fPathRef->countPoints();
633 int count = SkMin32(max, fPathRef->countPoints());
635 return fPathRef->countPoints();
639 if ((unsigned)index < (unsigned)fPathRef->countPoints()) {
670 int count = fPathRef->countPoints();
686 int count = fPathRef->countPoints();
698 int count = fPathRef->countPoints();
    [all...]
SkEdgeBuilder.cpp 246 int maxEdgeCount = path.countPoints();
SkStroke.cpp 363 fOuter.incReserve(src.countPoints() * 3);
365 fInner.incReserve(src.countPoints());
    [all...]
SkScan_AntiPath.cpp 766 return path.countPoints() < SkTMax(bounds.width(), bounds.height()) / 2 - 10;
SkGlyphCache.cpp 209 fMemoryUsed += sizeof(SkPath) + path->countPoints() * sizeof(SkPoint);
SkScan_AAAPath.cpp     [all...]
  /external/skia/gm/
pathcontourstart.cpp 115 const int n = path.countPoints();
strokerect.cpp 33 int n = path.countPoints();
  /external/skia/src/gpu/gl/
GrGLPath.cpp 103 int pointCnt = skPath.countPoints();
225 int pointCnt = skPath.countPoints();
  /external/skia/src/utils/
SkShadowTessellator.cpp 377 fPositions.setReserve(4 * path.countPoints());
378 fColors.setReserve(4 * path.countPoints());
381 fIndices.setReserve(12 * path.countPoints());
746 fPositions.setReserve(5 * path.countPoints());
747 fColors.setReserve(5 * path.countPoints());
750 fIndices.setReserve(15 * path.countPoints());
751 fClipPolygon.setReserve(path.countPoints());
    [all...]
SkLua.cpp     [all...]
  /external/skia/experimental/SimpleCocoaApp/
SimpleApp.mm 163 int points = path.countPoints();
  /external/skia/src/gpu/
GrShape.cpp 81 const int pointCnt = path.countPoints();
96 const int pointCnt = path.countPoints();
GrDistanceFieldGenFromVector.cpp 231 int countPoints() {
  /external/skia/src/gpu/ops/
GrAAConvexTessellator.cpp 354 this->reservePts(5*path.countPoints());
358 fIndices.setReserve(18*path.countPoints() + 6);
360 fNorms.setReserve(path.countPoints());
    [all...]
GrAAConvexPathRenderer.cpp 50 int countPoints() {
141 int n = segb.countPoints();
    [all...]
  /external/skia/tools/debugger/
SkObjectParser.cpp 178 mPath->appendS32(path.countPoints());
  /external/skia/samplecode/
SampleQuadStroker.cpp 281 int n = path.countPoints();
SampleAAGeometry.cpp     [all...]

Completed in 2574 milliseconds

1 2