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

  /external/skia/include/core/
SkPathRef.h 198 int countPoints() const { SkDEBUGCODE(this->validate();) return fPointCnt; }
218 * Shortcut for this->points() + this->countPoints()
220 const SkPoint* pointsEnd() const { return this->points() + this->countPoints(); }
283 int count = ref.countPoints();
SkPath.h 247 int countPoints() const;
250 (i.e. is not 0 <= index < countPoints()) then the returned coordinates
    [all...]
  /external/skia/gm/
strokerect.cpp 32 int n = path.countPoints();
  /external/skia/src/core/
SkPathRef.cpp 68 SkASSERT((*dst)->countPoints() == src.countPoints());
73 bool canXformBounds = !src.fBoundsIsDirty && matrix.rectStaysRect() && src.countPoints() > 1;
136 SkASSERT(pointCount == ref->countPoints());
168 int oldPCnt = (*pathRef)->countPoints();
SkPath.cpp 323 SkASSERT(2 == fPathRef->countPoints());
544 pts = fPathRef->points() + fPathRef->countPoints();
573 int SkPath::countPoints() const {
574 return fPathRef->countPoints();
582 int count = SkMin32(max, fPathRef->countPoints());
584 return fPathRef->countPoints();
588 if ((unsigned)index < (unsigned)fPathRef->countPoints()) {
619 int count = fPathRef->countPoints();
635 int count = fPathRef->countPoints();
647 int count = fPathRef->countPoints();
    [all...]
SkEdgeBuilder.cpp 88 int maxEdgeCount = path.countPoints();
SkGlyphCache.cpp 341 glyph.fPath->countPoints() * sizeof(SkPoint);
SkStroke.cpp 391 fOuter.incReserve(src.countPoints() * 3);
393 fInner.incReserve(src.countPoints());
    [all...]
  /external/skia/tests/
EmptyPathTest.cpp 51 paint.isAntiAlias(), path.getFillType(), path.countPoints());
PathTest.cpp     [all...]
PathOpsOpTest.cpp 24 for (int index = 0; index < path->countPoints(); ++index) {
    [all...]
  /external/skia/experimental/StrokePathRenderer/
GrStrokePathRenderer.cpp 70 const int maxNbVerts = (path.countPoints() + 1) * 5;
109 const int nbQuads = origPath.countPoints() + 1; // Could be "-1" if path is not closed
  /external/skia/tools/lua/
count_reduced_clipstacks.lua 27 info = info .. ", convex_poly " .. element["path"]:countPoints() .. " points"
  /external/skia/src/gpu/gl/
GrGLPath.cpp 97 int pointCnt = skPath.countPoints();
  /external/skia/src/gpu/
GrAAConvexTessellator.cpp 237 this->reservePts(5*path.countPoints());
241 fIndices.setReserve(18*path.countPoints() + 6);
243 fNorms.setReserve(path.countPoints());
GrAAConvexPathRenderer.cpp 50 int countPoints() {
142 int n = segb.countPoints();
    [all...]
  /external/skia/src/gpu/effects/
GrConvexPolyEffect.cpp 275 if (path.countPoints() > kMaxEdges) {
  /external/skia/src/utils/debugger/
SkObjectParser.cpp 137 mPath->appendS32(path.countPoints());
  /external/skia/samplecode/
SampleQuadStroker.cpp 264 int n = path.countPoints();
  /external/skia/src/utils/
SkLua.cpp     [all...]

Completed in 822 milliseconds