Home
last modified time | relevance | path

Searched refs:quadPath (Results 1 – 9 of 9) sorted by relevance

/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/inspector/
H A DDOMNodeHighlighter.cpp51 Path quadPath; in quadToPath() local
52 quadPath.moveTo(quad.p1()); in quadToPath()
53 quadPath.addLineTo(quad.p2()); in quadToPath()
54 quadPath.addLineTo(quad.p3()); in quadToPath()
55 quadPath.addLineTo(quad.p4()); in quadToPath()
56 quadPath.closeSubpath(); in quadToPath()
57 return quadPath; in quadToPath()
65 Path quadPath = quadToPath(quad); in drawOutlinedQuad() local
71 context.clipOut(quadPath); in drawOutlinedQuad()
75 context.strokePath(quadPath); in drawOutlinedQuad()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/tests/
H A DPathOpsTestCommon.cpp167 void CubicPathToQuads(const SkPath& cubicPath, SkPath* quadPath) { in CubicPathToQuads() argument
168 quadPath->reset(); in CubicPathToQuads()
174 quadPath->moveTo(pts[0].fX, pts[0].fY); in CubicPathToQuads()
177 quadPath->lineTo(pts[1].fX, pts[1].fY); in CubicPathToQuads()
180 quadPath->quadTo(pts[1].fX, pts[1].fY, pts[2].fX, pts[2].fY); in CubicPathToQuads()
191 quadPath->quadTo(qPts[0].fX, qPts[0].fY, qPts[1].fX, qPts[1].fY); in CubicPathToQuads()
195 quadPath->close(); in CubicPathToQuads()
H A DPathOpsTestCommon.h30 void CubicPathToQuads(const SkPath& cubicPath, SkPath* quadPath);
H A DGrStyledShapeTest.cpp2189 SkPath quadPath; in DEF_TEST() local
2190 quadPath.quadTo(10, 10, 5, 8); in DEF_TEST()
2191 geos.emplace_back(new PathGeo(quadPath, PathGeo::Invert::kNo)); in DEF_TEST()
2192 geos.emplace_back(new PathGeo(quadPath, PathGeo::Invert::kYes)); in DEF_TEST()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/samplecode/
H A DSamplePathOverstroke.cpp63 SkPath quadPath(SkPoint p1, SkPoint p2) { in quadPath() function in OverstrokeView
132 path = quadPath(p1, p2); in onDrawContent()
144 path = quadPath(p1, p2); in onDrawContent()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/samplecode/
H A DSamplePathOverstroke.cpp63 SkPath quadPath(SkPoint p1, SkPoint p2) { in quadPath() function in OverstrokeView
132 path = quadPath(p1, p2); in onDrawContent()
144 path = quadPath(p1, p2); in onDrawContent()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/tools/fonts/
H A DTestSVGTypeface.cpp1121 void path_to_quads(const SkPath& path, SkPath* quadPath) { in path_to_quads() argument
1122 quadPath->reset(); in path_to_quads()
1128 case SkPathVerb::kMove: quadPath->moveTo(pts[0].fX, pts[0].fY); break; in path_to_quads()
1129 case SkPathVerb::kLine: quadPath->lineTo(pts[1].fX, pts[1].fY); break; in path_to_quads()
1131 quadPath->quadTo(pts[1].fX, pts[1].fY, pts[2].fX, pts[2].fY); in path_to_quads()
1137 quadPath->quadTo( in path_to_quads()
1144 quadPath->quadTo(quadPts[i * 2 + 1].fX, in path_to_quads()
1150 case SkPathVerb::kClose: quadPath->close(); break; in path_to_quads()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/tools/fonts/
H A DTestSVGTypeface.cpp1119 void path_to_quads(const SkPath& path, SkPath* quadPath) { in path_to_quads() argument
1120 quadPath->reset(); in path_to_quads()
1129 case SkPath::kMove_Verb: quadPath->moveTo(pts[0].fX, pts[0].fY); break; in path_to_quads()
1130 case SkPath::kLine_Verb: quadPath->lineTo(pts[1].fX, pts[1].fY); break; in path_to_quads()
1132 quadPath->quadTo(pts[1].fX, pts[1].fY, pts[2].fX, pts[2].fY); in path_to_quads()
1138 quadPath->quadTo( in path_to_quads()
1145 quadPath->quadTo(quadPts[i * 2 + 1].fX, in path_to_quads()
1151 case SkPath::kClose_Verb: quadPath->close(); break; in path_to_quads()
/dports/misc/qt5-examples/qt-everywhere-src-5.15.2/qtdeclarative/examples/quick/shapes/content/
H A Dinteractive.qml250 property Component quadPath: Component {
304 var p = quadPath.createObject(root, { startX: x, startY: y });