Searched refs:getSegmentMasks (Results 1 - 13 of 13) sorted by relevance
/third_party/skia/docs/examples/ |
H A D | Path_SegmentMask.cpp | 9 SkDebugf("Path kConic_SegmentMask is %s\n", path.getSegmentMasks() & in REG_FIDDLE() 11 SkDebugf("Path kQuad_SegmentMask is %s\n", path.getSegmentMasks() & in REG_FIDDLE()
|
H A D | Path_getSegmentMasks.cpp | 14 if (mask & path.getSegmentMasks()) { in REG_FIDDLE()
|
/third_party/skia/src/gpu/effects/ |
H A D | GrConvexPolyEffect.cpp | 19 if (path.getSegmentMasks() != SkPath::kLine_SegmentMask || !path.isConvex()) { in Make()
|
/third_party/skia/include/core/ |
H A D | SkPath.h | 1408 getSegmentMasks() returns a cached result; it is very fast. 1412 uint32_t getSegmentMasks() const { return fPathRef->getSegmentMasks(); } in getSegmentMasks() function in SkPath
|
/third_party/skia/include/private/ |
H A D | SkPathRef.h | 218 uint32_t getSegmentMasks() const { return fSegmentMask; } in getSegmentMasks() function in final
|
/third_party/skia/tests/ |
H A D | PathTest.cpp | 2875 REPORTER_ASSERT(reporter, SkPath::kQuad_SegmentMask == p.getSegmentMasks()); in test_segment_masks() 2878 REPORTER_ASSERT(reporter, p2.getSegmentMasks() == p.getSegmentMasks()); in test_segment_masks() 2880 REPORTER_ASSERT(reporter, kCurveSegmentMask == p.getSegmentMasks()); in test_segment_masks() 2883 REPORTER_ASSERT(reporter, p2.getSegmentMasks() == p.getSegmentMasks()); in test_segment_masks() 2888 REPORTER_ASSERT(reporter, SkPath::kCubic_SegmentMask == p.getSegmentMasks()); in test_segment_masks() 2890 REPORTER_ASSERT(reporter, p2.getSegmentMasks() == p.getSegmentMasks()); in test_segment_masks() 3593 REPORTER_ASSERT(reporter, 0 == p.getSegmentMasks()); in test_empty() [all...] |
H A D | GrStyledShapeTest.cpp | 629 REPORTER_ASSERT(r, path.getSegmentMasks() == fBase->segmentMask()); in init() 632 REPORTER_ASSERT(r, path.getSegmentMasks() == fAppliedPE->segmentMask()); in init() 635 REPORTER_ASSERT(r, path.getSegmentMasks() == fAppliedFull->segmentMask()); in init()
|
/third_party/skia/src/gpu/geometry/ |
H A D | GrShape.cpp | 403 return fPath.getSegmentMasks(); in segmentMask()
|
/third_party/skia/src/core/ |
H A D | SkEdgeBuilder.cpp | 370 const int count = SkPath::kLine_SegmentMask == path.getSegmentMasks() in buildEdges()
|
H A D | SkPath.cpp | 3131 if (path.getSegmentMasks() != SkPath::kLine_SegmentMask) { in IsSimpleRect() 3333 if (this->getSegmentMasks() == SkPath::kLine_SegmentMask) { in computeTightBounds()
|
H A D | SkStroke.cpp | 1448 bool ignoreCenter = fDoFill && (src.getSegmentMasks() == SkPath::kLine_SegmentMask) &&
|
/third_party/skia/gm/ |
H A D | convex_all_line_paths.cpp | 260 SkASSERT(SkPath::kLine_SegmentMask == path.getSegmentMasks()); in GetPath()
|
/third_party/skia/src/gpu/ops/ |
H A D | AAHairLinePathRenderer.cpp | 1045 uint32_t mask = fPaths[i].fPath.getSegmentMasks(); in predictPrograms()
|
Completed in 30 milliseconds