Home | History | Annotate | Download | only in tests

Lines Matching refs:Invert

156     enum class Invert { kNo, kYes };
158 PathGeo(const SkPath& path, Invert invert) : fPath(path) {
160 if (Invert::kYes == invert) {
226 Invert invert)
227 : PathGeo(path, invert)
232 Invert invert)
233 : RRectPathGeo(path, SkRRect::MakeRect(equivalentRect), rrectForStroke, invert) {}
1795 for (PathGeo::Invert invert : {PathGeo::Invert::kNo, PathGeo::Invert::kYes}) {
1796 TestCase caseA(PathGeo(pathA, invert), paint, r);
1797 TestCase caseB(PathGeo(pathB, invert), paint, r);
1853 PathGeo::Invert::kNo));
1855 PathGeo::Invert::kYes));
1857 PathGeo::Invert::kNo));
1867 PathGeo::Invert::kNo));
1869 PathGeo::Invert::kYes));
1872 PathGeo::Invert::kNo));
1881 RRectPathGeo::RRectForStroke::kNo, PathGeo::Invert::kNo));
1883 RRectPathGeo::RRectForStroke::kNo, PathGeo::Invert::kYes));
1886 PathGeo::Invert::kNo));
1890 geos.emplace_back(new PathGeo(quadPath, PathGeo::Invert::kNo));
1891 geos.emplace_back(new PathGeo(quadPath, PathGeo::Invert::kYes));
1895 geos.emplace_back(new PathGeo(linePath, PathGeo::Invert::kNo));
1896 geos.emplace_back(new PathGeo(linePath, PathGeo::Invert::kYes));
1901 geos.emplace_back(new PathGeo(vLinePath, PathGeo::Invert::kNo));
1902 geos.emplace_back(new PathGeo(vLinePath, PathGeo::Invert::kYes));
1906 geos.emplace_back(new PathGeo(hLinePath, PathGeo::Invert::kNo));
1907 geos.emplace_back(new PathGeo(hLinePath, PathGeo::Invert::kYes));
1960 test_volatile_path(reporter, PathGeo(SkPath(), PathGeo::Invert::kNo));