Home
last modified time | relevance | path

Searched refs:invPath (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/tests/
DDefaultPathRendererTest.cpp79 SkPath invPath = make_path(SkRect::MakeXYWH(0, 0, kBigSize, kBigSize), in run_test() local
100 sdc->drawPath(nullptr, std::move(paint), GrAA::kNo, SkMatrix::I(), invPath, style); in run_test()
DPictureTest.cpp377 SkPath invPath; in test_clip_bound_opt() local
378 invPath.addOval(rect1); in test_clip_bound_opt()
379 invPath.setFillType(SkPathFillType::kInverseEvenOdd); in test_clip_bound_opt()
390 canvas->clipPath(invPath); in test_clip_bound_opt()
400 canvas->clipPath(invPath); in test_clip_bound_opt()
/third_party/flutter/skia/tests/
DDefaultPathRendererTest.cpp78 SkPath invPath = make_path(SkRect::MakeXYWH(0, 0, kBigSize, kBigSize), in run_test() local
99 SkMatrix::I(), invPath, style); in run_test()
DPictureTest.cpp380 SkPath invPath; in test_clip_bound_opt() local
381 invPath.addOval(rect1); in test_clip_bound_opt()
382 invPath.setFillType(SkPath::kInverseEvenOdd_FillType); in test_clip_bound_opt()
393 canvas->clipPath(invPath); in test_clip_bound_opt()
403 canvas->clipPath(invPath); in test_clip_bound_opt()
413 canvas->clipPath(invPath, kUnion_SkClipOp); in test_clip_bound_opt()
/third_party/skia/src/pdf/
DSkPDFDevice.cpp206 static bool calculate_inverse_path(const SkRect& bounds, const SkPath& invPath, in calculate_inverse_path() argument
208 SkASSERT(invPath.isInverseFillType()); in calculate_inverse_path()
209 return Op(SkPath::Rect(bounds), invPath, kIntersect_SkPathOp, outPath); in calculate_inverse_path()
/third_party/flutter/skia/src/pdf/
DSkPDFDevice.cpp183 static bool calculate_inverse_path(const SkRect& bounds, const SkPath& invPath, in calculate_inverse_path() argument
185 SkASSERT(invPath.isInverseFillType()); in calculate_inverse_path()
186 return Op(to_path(bounds), invPath, kIntersect_SkPathOp, outPath); in calculate_inverse_path()