Home
last modified time | relevance | path

Searched refs:kIntersect_SkPathOp (Results 1 – 22 of 22) sorted by relevance

/third_party/skia/tests/
DPathOpsSkpTest.cpp369 testPathOp(reporter, path, pathB, kIntersect_SkPathOp, filename); in skpcheeseandburger_com225()
403 testPathOp(reporter, path, pathB, kIntersect_SkPathOp, filename); in skpeverytechpro_blogspot_com100()
426 testPathOp(reporter, path, pathB, kIntersect_SkPathOp, filename); in skpflite_com41()
458 testPathOp(reporter, path, pathB, kIntersect_SkPathOp, filename); in skpilkoora_com37()
481 testPathOp(reporter, path, pathB, kIntersect_SkPathOp, filename); in skpmm4everfriends_com43()
508 testPathOp(reporter, path, pathB, kIntersect_SkPathOp, filename); in skpmtrk_uz27()
532 testPathOp(reporter, path, pathB, kIntersect_SkPathOp, filename); in skpfrauen_magazin_com83()
557 testPathOp(reporter, path, pathB, kIntersect_SkPathOp, filename); in skpi_gino_com16()
585 testPathOp(reporter, path, pathB, kIntersect_SkPathOp, filename); in skppchappy_com_au102()
613 testPathOp(reporter, path, pathB, kIntersect_SkPathOp, filename); in skpsciality_com161()
[all …]
DPathOpsOpTest.cpp181 testPathOp(reporter, path, pathB, kIntersect_SkPathOp, filename); in cubicOp1i()
311 testPathOp(reporter, path, pathB, kIntersect_SkPathOp, filename); in cubicOp19i()
383 testPathOp(reporter, one, two, kIntersect_SkPathOp, filename); in testIntersect1()
411 testPathOp(reporter, one, two, kIntersect_SkPathOp, filename); in testIntersect2()
552 testPathOp(reporter, path, pathB, kIntersect_SkPathOp, filename); in cubicOp25i()
682 testPathOp(reporter, path, pathB, kIntersect_SkPathOp, filename); in cubicOp33i()
786 testPathOp(reporter, path, pathB, kIntersect_SkPathOp, filename); in cubicOp41i()
1237 testPathOp(reporter, path, pathB, kIntersect_SkPathOp, filename); in skp1()
1257 testPathOp(reporter, path, pathB, kIntersect_SkPathOp, filename); in skp2()
1289 testPathOp(reporter, path, pathB, kIntersect_SkPathOp, filename); in skp3()
[all …]
DPathOpsOpLoopThreadedTest.cpp81 state.outputProgress(pathStr.c_str(), kIntersect_SkPathOp); in testOpLoopsMain()
85 testPathOp(state.fReporter, pathA, pathB, kIntersect_SkPathOp, testName.c_str()); in testOpLoopsMain()
DPathOpsExtendedTest.cpp96 case kIntersect_SkPathOp: in showOp()
DRoundRectTest.cpp1147 SkAssertResult(Op(aPath, bPath, kIntersect_SkPathOp, &expectedPath)); in verify_success()
/third_party/skia/src/pathops/
DSkPathOpsOp.cpp210 {{ kDifference_SkPathOp, kIntersect_SkPathOp }, { kUnion_SkPathOp, kReverseDifference_SkPathOp }},
211 {{ kIntersect_SkPathOp, kDifference_SkPathOp }, { kReverseDifference_SkPathOp, kUnion_SkPathOp }},
212 {{ kUnion_SkPathOp, kReverseDifference_SkPathOp }, { kDifference_SkPathOp, kIntersect_SkPathOp }},
214 {{ kReverseDifference_SkPathOp, kUnion_SkPathOp }, { kIntersect_SkPathOp, kDifference_SkPathOp }},
254 if (kIntersect_SkPathOp == op && one.isRect(&rect1) && two.isRect(&rect2)) { in OpDebug()
265 case kIntersect_SkPathOp: in OpDebug()
/third_party/skia/include/pathops/
DSkPathOps.h24 kIntersect_SkPathOp, //!< intersect the two paths enumerator
/third_party/skia/src/pdf/
DSkPDFGraphicStackState.cpp79 case SkClipOp::kIntersect: op = kIntersect_SkPathOp; break; in apply_clip()
126 if (Op(clipPath, SkPath::Rect(outsetBounds), kIntersect_SkPathOp, &clipPath)) { in append_clip()
DSkPDFDevice.cpp209 return Op(SkPath::Rect(bounds), invPath, kIntersect_SkPathOp, outPath); in calculate_inverse_path()
357 Op(clip, path, kIntersect_SkPathOp, &path); in drawAnnotation()
/third_party/skia/docs/examples/
DChromeMDRefreshTabs.cpp68 Op(left_path, right_path, SkPathOp::kIntersect_SkPathOp, &complete_path); in GetInteriorPath()
Dpathops.cpp33 makePaint(&fOpPaint[kIntersect_SkPathOp], blendColor); in draw()
DChromeMDRefreshTab.cpp135 Op(left_path, right_path, SkPathOp::kIntersect_SkPathOp, &complete_path); in GetInteriorPath()
/third_party/skia/modules/sksg/src/
DSkSGMerge.cpp50 return kIntersect_SkPathOp; in mode_to_op()
/third_party/skia/samplecode/
DSampleAndroidShadows.cpp250 Op(fSquareRRectPath, tmpClipPath, kIntersect_SkPathOp, &tmpPath); in onDrawContent()
261 Op(fSquareRRectPath, tmpClipPathBug, kIntersect_SkPathOp, &tmpPath); in onDrawContent()
DSampleDegenerateQuads.cpp72 if (!Op(shape, pixel, kIntersect_SkPathOp, &intersection) || intersection.isEmpty()) { in get_area_coverage()
DSamplePatch.cpp440 fPE[5] = SkMergePathEffect::Make(p0, nullptr, SkPathOp::kIntersect_SkPathOp); in ManyStrokesView()
/third_party/skia/gm/
Dpathopsinverse.cpp36 makePaint(&fOpPaint[kIntersect_SkPathOp], blendColor); in onOnceBeforeDraw()
/third_party/skia/modules/svg/src/
DSkSVGNode.cpp52 Op(path, *clipPath, kIntersect_SkPathOp, &path); in asPath()
/third_party/skia/bench/
DPathOpsBench.cpp81 DEF_BENCH( return new PathOpsBench("sect", kIntersect_SkPathOp); )
/third_party/skia/src/effects/
DSkOpPathEffect.cpp59 case SkPathOp::kIntersect_SkPathOp: in computeFastBounds()
/third_party/skia/modules/pathkit/
Dpathkit_wasm_bindings.cpp549 .value("INTERSECT", SkPathOp::kIntersect_SkPathOp) in EMSCRIPTEN_BINDINGS()
/third_party/skia/modules/canvaskit/
Dcanvaskit_bindings.cpp2073 .value("Intersect", SkPathOp::kIntersect_SkPathOp) in EMSCRIPTEN_BINDINGS()