/third_party/skia/src/pathops/ |
D | SkPathOpsOp.cpp | 210 {{ 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 }}, 271 case kDifference_SkPathOp: in OpDebug() 300 op = kDifference_SkPathOp; in OpDebug()
|
/third_party/skia/docs/examples/ |
D | pathops.cpp | 25 SkPaint fOpPaint[kReverseDifference_SkPathOp - kDifference_SkPathOp + 1]; in draw() 32 makePaint(&fOpPaint[kDifference_SkPathOp], oneColor); in draw() 68 for (int op = kDifference_SkPathOp; op <= kReverseDifference_SkPathOp; ++op) { in draw()
|
D | Paint_getTextPath.cpp | 13 Op(path, path2, SkPathOp::kDifference_SkPathOp, &path);
|
/third_party/skia/tests/ |
D | PathOpsBuilderTest.cpp | 19 builder.add(result, kDifference_SkPathOp); in DEF_TEST() 50 builder.add(rectPath, kDifference_SkPathOp); in DEF_TEST() 73 Op(opCompare, circle3, kDifference_SkPathOp, &opCompare); in DEF_TEST() 76 builder.add(circle3, kDifference_SkPathOp); in DEF_TEST() 149 builder.add(pathB, kDifference_SkPathOp); in DEF_TEST() 269 builder.add(clipRect, kDifference_SkPathOp); in DEF_TEST()
|
D | PathOpsOpTest.cpp | 43 testPathOp(reporter, path, pathB, kDifference_SkPathOp, filename); in cubicOp1d() 56 testPathOp(reporter, path, pathB, kDifference_SkPathOp, filename); in cubicOp2d() 69 testPathOp(reporter, path, pathB, kDifference_SkPathOp, filename); in cubicOp3d() 82 testPathOp(reporter, path, pathB, kDifference_SkPathOp, filename); in cubicOp5d() 95 testPathOp(reporter, path, pathB, kDifference_SkPathOp, filename); in cubicOp6d() 108 testPathOp(reporter, path, pathB, kDifference_SkPathOp, filename); in cubicOp7d() 121 testPathOp(reporter, path, pathB, kDifference_SkPathOp, filename); in cubicOp8d() 134 testPathOp(reporter, path, pathB, kDifference_SkPathOp, filename); in cubicOp9d() 149 testPathOp(reporter, path, pathB, kDifference_SkPathOp, filename); in quadOp9d() 168 testPathOp(reporter, path, pathB, kDifference_SkPathOp, filename); in lineOp9d() [all …]
|
D | PathOpsInverseTest.cpp | 17 for (int op = kDifference_SkPathOp; op <= kReverseDifference_SkPathOp; ++op) { in DEF_TEST()
|
D | PathOpsSkpTest.cpp | 1925 testPathOp(reporter, path, pathB, kDifference_SkPathOp, filename); in skpwww_hubbyscook_com_22() 2232 testPathOp(reporter, path, pathB, kDifference_SkPathOp, filename); in skpwww_kpopexplorer_net_22() 2278 testPathOp(reporter, path, pathB, kDifference_SkPathOp, filename); in skpwww_jessicaslens_wordpress_com_222() 2306 testPathOp(reporter, path, pathB, kDifference_SkPathOp, filename); in skpwww_simplysaru_com_40() 2663 testPathOp(reporter, path, pathB, kDifference_SkPathOp, filename); in skpwww_lokado_de_173() 2695 testPathOp(reporter, path, pathB, kDifference_SkPathOp, filename); in skpwww_wartepop_blogspot_com_br_6() 2727 testPathOp(reporter, path, pathB, kDifference_SkPathOp, filename); in skpwww_wartepop_blogspot_com_br_6a() 2810 testPathOp(reporter, path, pathB, kDifference_SkPathOp, filename); in skpwww_evolvehq_com_210() 2900 testPathOp(reporter, path, pathB, kDifference_SkPathOp, filename); in skpwww_fashionscandal_com_94()
|
D | PathOpsExtendedTest.cpp | 93 case kDifference_SkPathOp: in showOp()
|
/third_party/skia/gm/ |
D | pathopsinverse.cpp | 35 makePaint(&fOpPaint[kDifference_SkPathOp], oneColor); in onOnceBeforeDraw() 92 for (int op = kDifference_SkPathOp; op <= kReverseDifference_SkPathOp; ++op) { in onDraw() 112 SkPaint fOpPaint[kReverseDifference_SkPathOp - kDifference_SkPathOp + 1];
|
D | patheffects.cpp | 205 kDifference_SkPathOp), in onDraw()
|
/third_party/skia/include/pathops/ |
D | SkPathOps.h | 23 kDifference_SkPathOp, //!< subtract the op path from the first path enumerator
|
/third_party/skia/src/pdf/ |
D | SkPDFGraphicStackState.cpp | 78 case SkClipOp::kDifference: op = kDifference_SkPathOp; break; in apply_clip() 82 if (op == kDifference_SkPathOp || in apply_clip()
|
/third_party/skia/modules/sksg/src/ |
D | SkSGMerge.cpp | 52 return kDifference_SkPathOp; in mode_to_op()
|
D | SkSGGeometryEffect.cpp | 160 Op(path, fill_path, kDifference_SkPathOp, &path); in onRevalidateEffect()
|
/third_party/skia/samplecode/ |
D | SamplePatch.cpp | 435 fPE[1] = SkMergePathEffect::Make(p0, p1, SkPathOp::kDifference_SkPathOp); in ManyStrokesView() 437 fPE[2] = SkMergePathEffect::Make(nullptr, p1, SkPathOp::kDifference_SkPathOp); in ManyStrokesView() 439 fPE[4] = SkMergePathEffect::Make(p0, nullptr, SkPathOp::kDifference_SkPathOp); in ManyStrokesView()
|
/third_party/skia/src/effects/ |
D | SkOpPathEffect.cpp | 64 case SkPathOp::kDifference_SkPathOp: in computeFastBounds()
|
/third_party/skia/modules/pathkit/ |
D | pathkit_wasm_bindings.cpp | 548 .value("DIFFERENCE", SkPathOp::kDifference_SkPathOp) in EMSCRIPTEN_BINDINGS()
|
/third_party/skia/tools/fonts/ |
D | TestSVGTypeface.cpp | 305 *op = SkPathOp::kDifference_SkPathOp; in Default()
|
/third_party/skia/modules/canvaskit/ |
D | canvaskit_bindings.cpp | 2072 .value("Difference", SkPathOp::kDifference_SkPathOp) in EMSCRIPTEN_BINDINGS()
|