Home
last modified time | relevance | path

Searched refs:fPaths (Results 1 – 11 of 11) sorted by relevance

/external/skia/gm/
Dconvexpaths.cpp52 fPaths.push_back().moveTo(0, 0); in makePaths()
53 fPaths.back().quadTo(50 * SK_Scalar1, 100 * SK_Scalar1, in makePaths()
55 fPaths.back().lineTo(0, 0); in makePaths()
58 fPaths.push_back().moveTo(0, 0); in makePaths()
59 fPaths.back().lineTo(0, 100 * SK_Scalar1); in makePaths()
60 fPaths.back().quadTo(50 * SK_Scalar1, 100 * SK_Scalar1, in makePaths()
64 fPaths.push_back().moveTo(0, 50 * SK_Scalar1); in makePaths()
65 fPaths.back().quadTo(50 * SK_Scalar1, 0, in makePaths()
67 fPaths.back().quadTo(50 * SK_Scalar1, 100 * SK_Scalar1, in makePaths()
71 fPaths.push_back().moveTo(0, 50 * SK_Scalar1); in makePaths()
[all …]
Dcomplexclip2.cpp42 fPaths[0].addRoundRect(fRects[0], SkIntToScalar(5), SkIntToScalar(5)); in ComplexClip2GM()
46 fPaths[1].addRoundRect(fRects[1], SkIntToScalar(5), SkIntToScalar(5)); in ComplexClip2GM()
50 fPaths[2].addRoundRect(fRects[2], SkIntToScalar(5), SkIntToScalar(5)); in ComplexClip2GM()
54 fPaths[3].addRoundRect(fRects[3], SkIntToScalar(5), SkIntToScalar(5)); in ComplexClip2GM()
58 fPaths[4].addRoundRect(fRects[4], SkIntToScalar(5), SkIntToScalar(5)); in ComplexClip2GM()
127 canvas->drawPath(fPaths[k], rectPaint); in onDraw()
135 canvas->clipPath(fPaths[k], in onDraw()
153 SkPath fPaths[5]; member in skiagm::ComplexClip2GM
/external/skia/src/core/
DSkPathHeap.cpp25 fPaths.setCount(count); in SkPathHeap()
26 SkPath** ptr = fPaths.begin(); in SkPathHeap()
38 SkPath** iter = fPaths.begin(); in ~SkPathHeap()
39 SkPath** stop = fPaths.end(); in ~SkPathHeap()
49 *fPaths.append() = p; in append()
50 return fPaths.count(); in append()
54 int count = fPaths.count(); in flatten()
57 SkPath** iter = fPaths.begin(); in flatten()
58 SkPath** stop = fPaths.end(); in flatten()
DSkPathHeap.h34 int count() const { return fPaths.count(); } in count()
36 return *fPaths[index];
45 SkTDArray<SkPath*> fPaths; variable
DSkPictureRecord.cpp875 int count = fPaths.count(); in paths()
877 result += sizeof(fPaths[index]) + fPaths[index]->size(); in paths()
937 int count = fPaths.count(); in validatePaths()
940 const SkFlatPath* path = fPaths[index]; in validatePaths()
DSkPicturePlayback.cpp1036 const SkPath& path = fPaths[index]; in paths()
1509 const SkPath& path = fPaths[index]; in dump()
1518 "path%p, ", &fPaths[index]); in dump()
/external/skia/legacy/src/core/
DSkPathHeap.cpp23 fPaths.setCount(count); in SkPathHeap()
24 SkPath** ptr = fPaths.begin(); in SkPathHeap()
36 SkPath** iter = fPaths.begin(); in ~SkPathHeap()
37 SkPath** stop = fPaths.end(); in ~SkPathHeap()
47 *fPaths.append() = p; in append()
48 return fPaths.count(); in append()
52 int count = fPaths.count(); in flatten()
55 SkPath** iter = fPaths.begin(); in flatten()
56 SkPath** stop = fPaths.end(); in flatten()
DSkPathHeap.h32 int count() const { return fPaths.count(); } in count()
34 return *fPaths[index];
43 SkTDArray<SkPath*> fPaths; variable
DSkPictureRecord.cpp734 int count = fPaths.count(); in paths()
736 result += sizeof(fPaths[index]) + fPaths[index]->size(); in paths()
796 int count = fPaths.count(); in validatePaths()
799 const SkFlatPath* path = fPaths[index]; in validatePaths()
DSkPicturePlayback.cpp798 const SkPath& path = fPaths[index];
849 fPaths = new SkPath[fPathCount];
853 fPaths[index].unflatten(local);
915 const SkPath& path = fPaths[index]; in paths()
1388 const SkPath& path = fPaths[index]; in dump()
1397 "path%p, ", &fPaths[index]); in dump()
/external/skia/bench/
DPathBench.cpp332 fPaths.reset(kPathCnt); in onPreDraw()
337 this->makePath(&fPaths[i & (kPathCnt - 1)]); in onDraw()
344 fPaths.reset(0); in onPostDraw()
352 SkAutoTArray<SkPath> fPaths; member in PathCreateBench
370 fPaths.reset(kPathCnt); in onPreDraw()
373 this->makePath(&fPaths[i]); in onPreDraw()
380 fCopies[idx] = fPaths[idx]; in onDraw()
384 fPaths.reset(0); in onPostDraw()
393 SkAutoTArray<SkPath> fPaths; member in PathCopyBench
416 fPaths.reset(kPathCnt); in onPreDraw()
[all …]