Home
last modified time | relevance | path

Searched refs:countVerbs (Results 1 - 25 of 31) sorted by relevance

12

/third_party/skia/docs/examples/
H A DPath_copy_const_SkPath.cpp11 SkDebugf("path verbs: %d\n", path.countVerbs()); in REG_FIDDLE()
12 SkDebugf("path2 verbs: %d\n", path2.countVerbs()); in REG_FIDDLE()
14 SkDebugf("after reset\n" "path verbs: %d\n", path.countVerbs()); in REG_FIDDLE()
15 SkDebugf("path2 verbs: %d\n", path2.countVerbs()); in REG_FIDDLE()
H A DPath_countVerbs.cpp8 SkDebugf("empty verb count: %d\n", path.countVerbs()); in REG_FIDDLE()
10 SkDebugf("round rect verb count: %d\n", path.countVerbs()); in REG_FIDDLE()
H A DPath_getVerbs.cpp23 debugster("just right", path, verbs, path.countVerbs()); in REG_FIDDLE()
/third_party/skia/tests/
H A DParsePathTest.cpp127 REPORTER_ASSERT(r, path.countVerbs() == gTests[i].fVerbs); in DEF_TEST()
137 REPORTER_ASSERT(r, path.countVerbs() == 5); in DEF_TEST()
/third_party/skia/src/core/
H A DSkPath.cpp64 return (path.countVerbs() - SkPathPriv::LeadingMoveToCount(path)) == 0; in is_degenerate()
143 // ending with close, so countVerbs needs to be checked against 0.
376 int verbCount = fPathRef->countVerbs(); in isLastContourClosed()
384 int verbCount = fPathRef->countVerbs(); in isLine()
487 int SkPath::countVerbs() const { in countVerbs() function in SkPath
488 return fPathRef->countVerbs(); in countVerbs()
496 int count = std::min(max, fPathRef->countVerbs()); in getVerbs()
500 return fPathRef->countVerbs(); in getVerbs()
601 if (this->countVerbs() < 16) { in dirtyAfterEdit()
646 if (fPathRef->countVerbs() in injectMoveToIfNeeded()
[all...]
H A DSkPathPriv.h56 int verbCount = path.countVerbs(); in IsClosedSingleContour()
84 int verbCount = path.countVerbs(); in LeadingMoveToCount()
H A DSkPathRef.cpp238 int oldVCnt = (*pathRef)->countVerbs();
348 if (int numVerbs = path.countVerbs()) {
H A DSkPath_serial.cpp105 int32_t vbs = fPathRef->countVerbs(); in writeToMemory()
/third_party/skia/src/gpu/ops/
H A DPathInnerTriangulateOp.cpp221 if (fPath.countVerbs() <= 0) { in prePreparePrograms()
259 fPath.countVerbs(), in prePreparePrograms()
423 fTessellator->patchPreallocCount(fPath.countVerbs()); in onPrepare()
H A DPathTessellateOp.h36 , fTotalCombinedPathVerbCnt(path.countVerbs()) in PathTessellateOp()
H A DAtlasRenderTask.h77 fTotalCombinedPathVerbCnt += path.countVerbs(); in add()
H A DPathStencilCoverOp.h38 , fTotalCombinedPathVerbCnt(path.countVerbs()) in PathStencilCoverOp()
H A DStrokeTessellateOp.cpp48 , fTotalCombinedVerbCnt(path.countVerbs()) in StrokeTessellateOp()
H A DTessellationPathRenderer.cpp37 int numVerbs = path.countVerbs(); in make_non_convex_fill_op()
/third_party/skia/bench/
H A DTessellateBench.cpp149 fPath.countVerbs(), in DEF_PATH_TESS_BENCH()
163 fPath.countVerbs(), in DEF_PATH_TESS_BENCH()
351 fTotalVerbCount += fPathStrokes[i].fPath.countVerbs();
/third_party/skia/bench/graphite/
H A DIntersectionTreeBench.cpp136 int numVerbs = path.countVerbs();
/third_party/skia/src/gpu/tessellate/
H A DMiddleOutPolygonTriangulator.h203 PathMiddleOutFanIter(const SkPath& path) : fMiddleOut(path.countVerbs()) { in PathMiddleOutFanIter()
H A DPathWedgeTessellator.cpp43 , fNumRemainingVerbs(fPath.countVerbs()) in MidpointContourParser()
/third_party/skia/src/pathops/
H A DSkOpBuilder.cpp17 int verbCount = path.countVerbs(); in one_contour()
/third_party/skia/samplecode/
H A DSampleSimpleStroker.cpp60 int countVerbs() const { return fVerbs.size(); } in countVerbs() function in __anon18654::PathRecorder
305 const int numVerbs = path.countVerbs(); in appendPathReversed()
H A DSamplePathTessellators.cpp134 int patchPreallocCount = fTessellator->patchPreallocCount(fPath.countVerbs());
136 patchPreallocCount += fPath.countVerbs() - 1;
/third_party/skia/include/core/
H A DSkPath.h290 return 0 == fPathRef->countVerbs(); in isEmpty()
443 int countVerbs() const;
H A DSkPathBuilder.h247 int countVerbs() const { return fVerbs.count(); } in countVerbs() function in SkPathBuilder
/third_party/skia/include/private/
H A DSkPathRef.h301 int countVerbs() const { return fVerbs.count(); } in countVerbs() function in final
/third_party/skia/src/gpu/geometry/
H A DGrStyledShape.cpp93 const int verbCnt = path.countVerbs(); in path_key_from_data_size()
111 const int verbCnt = path.countVerbs(); in write_path_key_from_data()

Completed in 19 milliseconds

12