Home
last modified time | relevance | path

Searched refs:verbCount (Results 1 - 9 of 9) sorted by relevance

/third_party/skia/src/core/
H A DSkPathPriv.h56 int verbCount = path.countVerbs(); in IsClosedSingleContour() local
57 if (verbCount == 0) in IsClosedSingleContour()
61 for (int i = 0; i < verbCount; i++) { in IsClosedSingleContour()
70 if (i == verbCount - 1) { in IsClosedSingleContour()
84 int verbCount = path.countVerbs(); in LeadingMoveToCount() local
86 for (int i = 0; i < verbCount; i++) { in LeadingMoveToCount()
91 return verbCount; // path is all move verbs in LeadingMoveToCount()
H A DSkPath.cpp376 int verbCount = fPathRef->countVerbs(); in isLastContourClosed() local
377 if (0 == verbCount) { in isLastContourClosed()
380 return kClose_Verb == fPathRef->atVerb(verbCount - 1); in isLastContourClosed()
384 int verbCount = fPathRef->countVerbs(); in isLine() local
386 if (2 == verbCount) { in isLine()
3397 SkPathVerbAnalysis sk_path_analyze_verbs(const uint8_t vbs[], int verbCount) { in sk_path_analyze_verbs() argument
3402 for (int i = 0; i < verbCount; ++i) { in sk_path_analyze_verbs()
3443 const uint8_t vbs[], int verbCount, in Make()
3446 if (verbCount <= 0) { in Make()
3450 const auto info = sk_path_analyze_verbs(vbs, verbCount); in Make()
3442 Make(const SkPoint pts[], int pointCount, const uint8_t vbs[], int verbCount, const SkScalar ws[], int wCount, SkPathFillType ft, bool isVolatile) Make() argument
[all...]
/third_party/skia/tests/
H A DSubsetPath.cpp150 int verbCount = 0; in SubsetVerbs() local
159 ++verbCount; in SubsetVerbs()
168 for (int index = 0; index < verbCount; ++index) { in SubsetVerbs()
171 fTries = verbCount; in SubsetVerbs()
/third_party/skia/src/pathops/
H A DSkOpBuilder.cpp17 int verbCount = path.countVerbs(); in one_contour() local
18 uint8_t* verbs = (uint8_t*) allocator.makeArrayDefault<uint8_t>(verbCount); in one_contour()
19 (void) path.getVerbs(verbs, verbCount); in one_contour()
20 for (int index = 1; index < verbCount; ++index) { in one_contour()
H A DSkPathOpsAsWinding.cpp208 int verbCount = -1;
212 if (++verbCount < contour.fVerbStart) {
215 if (verbCount >= contour.fVerbEnd) {
327 int verbCount = 0; in reverseMarkedContours() local
334 for (; iter != iterate.end() && verbCount < contour.fVerbEnd; ++iter, ++verbCount) { in reverseMarkedContours()
H A DSkOpEdgeBuilder.cpp70 int verbCount = fPathVerbs.count(); in closeContour() local
72 if (SkPath::kLine_Verb == fPathVerbs[verbCount - 1] in closeContour()
/third_party/skia/include/private/
H A DSkPathRef.h419 /** Resets the path ref with verbCount verbs and pointCount points, all uninitialized. Also
421 void resetToSize(int verbCount, int pointCount, int conicCount, in resetToSize() argument
434 fVerbs.setReserve(verbCount + reserveVerbs); in resetToSize()
435 fVerbs.setCount(verbCount); in resetToSize()
/third_party/skia/tools/fonts/
H A Dcreate_test_font.cpp209 int verbCount = verbs.count(); in output_font() local
211 for (int index = 0; index < verbCount;) { in output_font()
216 if (++index < verbCount) { in output_font()
/third_party/skia/include/core/
H A DSkPath.h66 const uint8_t[], int verbCount,

Completed in 13 milliseconds