/external/skia/src/core/ |
D | SkPathRef.cpp | 68 SkASSERT((*dst)->countPoints() == src.countPoints()); in CreateTransformedCopy() 73 bool canXformBounds = !src.fBoundsIsDirty && matrix.rectStaysRect() && src.countPoints() > 1; in CreateTransformedCopy() 136 SkASSERT(pointCount == ref->countPoints()); in CreateFromBuffer() 168 int oldPCnt = (*pathRef)->countPoints(); in Rewind()
|
D | SkPath.cpp | 323 SkASSERT(2 == fPathRef->countPoints()); in isLine() 544 pts = fPathRef->points() + fPathRef->countPoints(); in isNestedFillRects() 573 int SkPath::countPoints() const { in countPoints() function in SkPath 574 return fPathRef->countPoints(); in countPoints() 582 int count = SkMin32(max, fPathRef->countPoints()); in getPoints() 584 return fPathRef->countPoints(); in getPoints() 588 if ((unsigned)index < (unsigned)fPathRef->countPoints()) { in getPoint() 619 int count = fPathRef->countPoints(); in getLastPt() 635 int count = fPathRef->countPoints(); in setPt() 647 int count = fPathRef->countPoints(); in setLastPt() [all …]
|
D | SkEdgeBuilder.cpp | 88 int maxEdgeCount = path.countPoints(); in buildPoly()
|
D | SkStroke.cpp | 391 fOuter.incReserve(src.countPoints() * 3); in SkPathStroker() 393 fInner.incReserve(src.countPoints()); in SkPathStroker() 1655 if (2 == src.countPoints()) { in strokePath()
|
D | SkGlyphCache.cpp | 341 glyph.fPath->countPoints() * sizeof(SkPoint); in findPath()
|
/external/skia/include/core/ |
D | SkPathRef.h | 198 int countPoints() const { SkDEBUGCODE(this->validate();) return fPointCnt; } in countPoints() function 220 const SkPoint* pointsEnd() const { return this->points() + this->countPoints(); } in pointsEnd() 283 int count = ref.countPoints(); in ComputePtBounds()
|
D | SkPath.h | 247 int countPoints() const;
|
/external/skia/tools/lua/ |
D | count_reduced_clipstacks.lua | 27 info = info .. ", convex_poly " .. element["path"]:countPoints() .. " points"
|
/external/skia/experimental/StrokePathRenderer/ |
D | 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/gm/ |
D | strokerect.cpp | 32 int n = path.countPoints(); in draw_path()
|
/external/skia/tests/ |
D | EmptyPathTest.cpp | 51 paint.isAntiAlias(), path.getFillType(), path.countPoints()); in drawAndTest()
|
D | PathTest.cpp | 2324 REPORTER_ASSERT(reporter, gZeroLengthTests[i].numResultPts == (size_t)p.countPoints()); in test_zero_length_paths() 3046 REPORTER_ASSERT(reporter, 0 == p.countPoints()); in test_empty() 3490 REPORTER_ASSERT(reporter, kRepeatCnt == pathRef->countPoints()); in TestPathRef() 3501 REPORTER_ASSERT(reporter, kRepeatCnt == pathRef->countPoints()); in TestPathRef() 3512 REPORTER_ASSERT(reporter, 2*kRepeatCnt == pathRef->countPoints()); in TestPathRef() 3524 REPORTER_ASSERT(reporter, 2*kRepeatCnt == pathRef->countPoints()); in TestPathRef() 3537 REPORTER_ASSERT(reporter, 3*kRepeatCnt == pathRef->countPoints()); in TestPathRef()
|
D | PathOpsOpTest.cpp | 24 for (int index = 0; index < path->countPoints(); ++index) { in path_edit()
|
/external/skia/src/gpu/ |
D | GrAAConvexTessellator.cpp | 237 this->reservePts(5*path.countPoints()); in extractFromPath() 241 fIndices.setReserve(18*path.countPoints() + 6); in extractFromPath() 243 fNorms.setReserve(path.countPoints()); in extractFromPath()
|
D | GrAAConvexPathRenderer.cpp | 50 int countPoints() { in countPoints() function 142 int n = segb.countPoints(); in compute_vectors()
|
/external/skia/src/gpu/gl/ |
D | GrGLPath.cpp | 97 int pointCnt = skPath.countPoints(); in InitPathObject()
|
/external/skia/src/utils/debugger/ |
D | SkObjectParser.cpp | 137 mPath->appendS32(path.countPoints()); in PathToString()
|
/external/skia/src/gpu/effects/ |
D | GrConvexPolyEffect.cpp | 275 if (path.countPoints() > kMaxEdges) { in Create()
|
/external/skia/experimental/SimpleCocoaApp/ |
D | SimpleApp.mm | 158 int points = path.countPoints();
|
/external/skia/samplecode/ |
D | SampleQuadStroker.cpp | 264 int n = path.countPoints(); in draw_points()
|
/external/skia/src/utils/ |
D | SkLua.cpp | 1516 lua_pushinteger(L, get_obj<SkPath>(L, 1)->countPoints()); in lpath_countPoints()
|