/third_party/skia/tests/ |
H A D | PathOpsAsWindingTest.cpp | 68 REPORTER_ASSERT(reporter, result.isConvex()); in DEF_TEST() 82 REPORTER_ASSERT(reporter, !result.isConvex()); in DEF_TEST() 89 REPORTER_ASSERT(reporter, !result.isConvex()); in DEF_TEST() 98 REPORTER_ASSERT(reporter, !result.isConvex()); in DEF_TEST() 107 REPORTER_ASSERT(reporter, !result.isConvex()); in DEF_TEST() 114 REPORTER_ASSERT(reporter, !test.isConvex()); in DEF_TEST()
|
H A D | PathTest.cpp | 55 REPORTER_ASSERT(reporter, !path.isConvex()); in test_skbug_3469() 544 bool smallConvex = smallPath.isConvex(); in test_tiny_path_convexity() 552 bool largeConvex = largePath.isConvex(); in test_tiny_path_convexity() 853 REPORTER_ASSERT(reporter, temp.isConvex()); in test_arb_round_rect_is_convex() 1150 REPORTER_ASSERT(reporter, path.isConvex()); in test_direction() 1315 bool convexity = copy.isConvex(); in check_convexity() 1326 tinyConvexPolygon.isConvex(); in test_path_crbug389050() 1334 platTriangle.isConvex(); in test_path_crbug389050() 1342 platTriangle.isConvex(); in test_path_crbug389050() 1524 REPORTER_ASSERT(reporter, p.isConvex()); in check_convex_bounds() [all...] |
/third_party/skia/src/core/ |
H A D | SkPictureCommon.h | 50 if (op.paint.isAntiAlias() && !op.path.isConvex()) { in operator ()() 67 if (op.opAA.aa() && !op.path.isConvex()) { in operator ()()
|
H A D | SkPathPriv.h | 410 (void)path.isConvex(); in ForceComputeConvexity()
|
H A D | SkEdgeBuilder.cpp | 366 const bool canCullToTheRight = !path.isConvex(); in buildEdges()
|
/third_party/skia/bench/ |
H A D | AAClipBench.cpp | 39 SkASSERT(fClipPath.isConvex()); in AAClipBench() 55 SkASSERT(fClipPath.isConvex()); 128 SkASSERT(path.isConvex()); in recurse()
|
H A D | PathBench.cpp | 771 SkASSERT(path->isConvex()); in make_arb_round_rect() 1247 SkASSERT(!fPath.isConvex()); in CommonConvexBench() 1249 SkASSERT(fPath.isConvex()); in CommonConvexBench()
|
/third_party/skia/docs/examples/ |
H A D | Path_isConvex.cpp | 16 canvas->drawString(path.isConvex() ? "convex" : "not convex", 30, 100, paint); in REG_FIDDLE()
|
H A D | Path_addRoundRect.cpp | 14 SK_ColorBLUE : path.isConvex() ? SK_ColorGRAY : SK_ColorGREEN); in REG_FIDDLE()
|
/third_party/skia/gm/ |
H A D | dstreadshuffle.cpp | 78 SkASSERT(fConvexPath.isConvex()); in drawShape() 97 SkASSERT(!fConcavePath.isConvex()); in drawShape()
|
H A D | convexpaths.cpp | 251 SkASSERT(fPaths[i].isConvex());
|
H A D | convex_all_line_paths.cpp | 259 SkASSERT(path.isConvex()); in GetPath()
|
/third_party/skia/experimental/graphite/src/geom/ |
H A D | Shape.cpp | 64 // SkPath.isConvex() really means "is this path convex were it to be closed". in convex() 65 return (simpleFill || fPath.isLastContourClosed()) && fPath.isConvex(); in convex()
|
/third_party/skia/bench/graphite/ |
H A D | IntersectionTreeBench.cpp | 133 if (path.isConvex()) {
|
/third_party/skia/src/pathops/ |
H A D | SkOpBuilder.cpp | 140 if (test->isConvex()) { in resolve()
|
H A D | SkPathOpsSimplify.cpp | 145 if (path.isConvex()) { in SimplifyDebug()
|
H A D | SkPathOpsAsWinding.cpp | 386 if (path.isEmpty() || path.isConvex()) { in AsWinding()
|
/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/src/gpu/ops/ |
H A D | TessellationPathRenderer.cpp | 36 SkASSERT(!path.isConvex() || path.isInverseFillType()); in make_non_convex_fill_op()
|
/third_party/skia/src/gpu/geometry/ |
H A D | GrAAConvexTessellator.h | 167 SkDEBUGCODE(bool isConvex(const GrAAConvexTessellator& tess) const;)
|
H A D | GrShape.cpp | 350 // SkPath.isConvex() really means "is this path convex were it to be closed". in convex() 352 return (simpleFill || fPath.isLastContourClosed()) && fPath.isConvex(); in convex()
|
H A D | GrAAConvexTessellator.cpp | 382 SkASSERT(path.isConvex()); 892 bool GrAAConvexTessellator::Ring::isConvex(const GrAAConvexTessellator& tess) const {
|
/third_party/skia/src/gpu/ |
H A D | GrTestUtils.cpp | 240 SkASSERT(gPath[i].isConvex()); in TestPathConvex()
|
/third_party/skia/samplecode/ |
H A D | SampleDegenerateQuads.cpp | 409 return path.isConvex();
|
/third_party/skia/include/core/ |
H A D | SkPath.h | 228 bool isConvex() const { in isConvex() function in SkPath
|