OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:quadPath
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/skia/tests/
PathOpsTestCommon.h
15
void CubicPathToQuads(const SkPath& cubicPath, SkPath*
quadPath
);
PathOpsTestCommon.cpp
32
void CubicPathToQuads(const SkPath& cubicPath, SkPath*
quadPath
) {
33
quadPath
->reset();
42
quadPath
->moveTo(pts[0].fX, pts[0].fY);
45
quadPath
->lineTo(pts[1].fX, pts[1].fY);
48
quadPath
->quadTo(pts[1].fX, pts[1].fY, pts[2].fX, pts[2].fY);
59
quadPath
->quadTo(qPts[0].fX, qPts[0].fY, qPts[1].fX, qPts[1].fY);
63
quadPath
->close();
/external/skia/tests/
PathOpsTestCommon.h
15
void CubicPathToQuads(const SkPath& cubicPath, SkPath*
quadPath
);
PathOpsTestCommon.cpp
32
void CubicPathToQuads(const SkPath& cubicPath, SkPath*
quadPath
) {
33
quadPath
->reset();
42
quadPath
->moveTo(pts[0].fX, pts[0].fY);
45
quadPath
->lineTo(pts[1].fX, pts[1].fY);
48
quadPath
->quadTo(pts[1].fX, pts[1].fY, pts[2].fX, pts[2].fY);
59
quadPath
->quadTo(qPts[0].fX, qPts[0].fY, qPts[1].fX, qPts[1].fY);
63
quadPath
->close();
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorOverlay.cpp
105
Path
quadPath
;
106
quadPath
.moveTo(quad.p1());
107
quadPath
.addLineTo(quad.p2());
108
quadPath
.addLineTo(quad.p3());
109
quadPath
.addLineTo(quad.p4());
110
quadPath
.closeSubpath();
111
return
quadPath
;
118
Path
quadPath
= quadToPath(quad);
124
context->clipOut(
quadPath
);
128
context->strokePath(
quadPath
);
[
all
...]
Completed in 826 milliseconds