Home
last modified time | relevance | path

Searched refs:fPages (Results 1 – 14 of 14) sorted by relevance

/third_party/flutter/skia/src/gpu/
DGrDrawOpAtlas.cpp253 plotIter.init(fPages[pageIdx].fPlotList, PlotList::Iter::kHead_IterStart); in uploadToPage()
298 Plot* plot = fPages[pageIdx].fPlotList.tail(); in addToAtlas()
337 Plot* currentPlot = fPages[pageIdx].fPlotList.tail(); in addToAtlas()
355 fPages[pageIdx].fPlotList.remove(plot); in addToAtlas()
356 sk_sp<Plot>& newPlot = fPages[pageIdx].fPlotArray[plot->index()]; in addToAtlas()
359 fPages[pageIdx].fPlotList.addToHead(newPlot.get()); in addToAtlas()
393 plotIter.init(fPages[pageIndex].fPlotList, PlotList::Iter::kHead_IterStart); in compactRadicals()
424 plotIter.init(fPages[pageIndex].fPlotList, PlotList::Iter::kHead_IterStart); in compact()
452 plotIter.init(fPages[pageIndex].fPlotList, PlotList::Iter::kHead_IterStart); in compact()
485 plotIter.init(fPages[lastPageIndex].fPlotList, PlotList::Iter::kHead_IterStart); in compact()
[all …]
DGrDrawOpAtlas.h142 return fPages[page].fPlotArray[plot]->genID() == GetGenerationFromID(id); in hasID()
152 Plot* plot = fPages[pageIdx].fPlotArray[plotIdx].get(); in setLastUseToken()
228 Plot* plot = fPages[pd.fPageIndex].fPlotArray[pd.fPlotIndex].get(); in setLastUseTokenBulk()
366 if (fPages[pageIdx].fPlotList.head() == plot) { in makeMRU()
370 fPages[pageIdx].fPlotList.remove(plot); in makeMRU()
371 fPages[pageIdx].fPlotList.addToHead(plot); in makeMRU()
418 Page fPages[kMaxMultitexturePages]; variable
/third_party/skia/src/gpu/
DGrDrawOpAtlas.cpp274 plotIter.init(fPages[pageIdx].fPlotList, PlotList::Iter::kHead_IterStart); in uploadToPage()
321 Plot* plot = fPages[pageIdx].fPlotList.tail(); in addToAtlas()
358 Plot* currentPlot = fPages[pageIdx].fPlotList.tail(); in addToAtlas()
376 fPages[pageIdx].fPlotList.remove(plot); in addToAtlas()
377 sk_sp<Plot>& newPlot = fPages[pageIdx].fPlotArray[plot->plotIndex()]; in addToAtlas()
380 fPages[pageIdx].fPlotList.addToHead(newPlot.get()); in addToAtlas()
416 plotIter.init(fPages[pageIndex].fPlotList, PlotList::Iter::kHead_IterStart); in compact()
450 plotIter.init(fPages[pageIndex].fPlotList, PlotList::Iter::kHead_IterStart); in compact()
483 plotIter.init(fPages[lastPageIndex].fPlotList, PlotList::Iter::kHead_IterStart); in compact()
521 plotIter.init(fPages[lastPageIndex].fPlotList, PlotList::Iter::kHead_IterStart); in compact()
[all …]
DGrDrawOpAtlas.h268 uint64_t plotGeneration = fPages[page].fPlotArray[plot]->genID(); in hasID()
280 Plot* plot = fPages[pageIdx].fPlotArray[plotIdx].get(); in setLastUseToken()
350 Plot* plot = fPages[pd.fPageIndex].fPlotArray[pd.fPlotIndex].get(); in setLastUseTokenBulk()
469 if (fPages[pageIdx].fPlotList.head() == plot) { in makeMRU()
473 fPages[pageIdx].fPlotList.remove(plot); in makeMRU()
474 fPages[pageIdx].fPlotList.addToHead(plot); in makeMRU()
520 Page fPages[kMaxMultitexturePages]; variable
/third_party/flutter/skia/src/utils/
DSkMultiPictureDocument.cpp54 SkTArray<sk_sp<SkPicture>> fPages; member
68 fPages.push_back(fPictureRecorder.finishRecordingAsPicture()); in onEndPage()
75 wStream->write32(SkToU32(fPages.count())); in onClose()
81 for (const sk_sp<SkPicture>& page : fPages) { in onClose()
88 fPages.reset(); in onClose()
93 fPages.reset(); in onAbort()
/third_party/skia/src/utils/
DSkMultiPictureDocument.cpp55 SkTArray<sk_sp<SkPicture>> fPages; member
73 fPages.push_back(lastPage); in onEndPage()
83 wStream->write32(SkToU32(fPages.count())); in onClose()
89 for (const sk_sp<SkPicture>& page : fPages) { in onClose()
96 fPages.reset(); in onClose()
101 fPages.reset(); in onAbort()
/third_party/flutter/skia/src/pdf/
DSkPDFDocumentPriv.h106 size_t currentPageIndex() { return fPages.size(); } in currentPageIndex()
134 std::vector<std::unique_ptr<SkPDFDict>> fPages; variable
DSkPDFDocument.cpp229 if (fPages.empty()) { in onBeginPage()
354 fPages.emplace_back(std::move(page)); in onEndPage()
522 if (fPages.empty()) { in onClose()
535 docCatalog->insertRef("Pages", generate_page_tree(this, std::move(fPages), fPageRefs)); in onClose()
/third_party/skia/src/pdf/
DSkPDFDocumentPriv.h135 size_t currentPageIndex() { return fPages.size(); } in currentPageIndex()
161 std::vector<std::unique_ptr<SkPDFDict>> fPages; variable
DSkPDFDocument.cpp251 if (fPages.empty()) { in onBeginPage()
378 fPages.emplace_back(std::move(page)); in onEndPage()
552 if (fPages.empty()) { in onClose()
565 docCatalog->insertRef("Pages", generate_page_tree(this, std::move(fPages), fPageRefs)); in onClose()
/third_party/flutter/skia/dm/
DDMSrcSink.cpp1248 fPages.reset(count); in MSKPSrc()
1249 (void)SkMultiPictureDocumentReadPageSizes(stream.get(), &fPages[0], fPages.count()); in MSKPSrc()
1253 int MSKPSrc::pageCount() const { return fPages.count(); } in pageCount()
1257 return i >= 0 && i < fPages.count() ? fPages[i].fSize.toCeil() : SkISize{0, 0}; in size()
1265 if (i >= fPages.count() || i < 0) { in draw()
1268 SkPicture* page = fPages[i].fPicture.get(); in draw()
1274 if (!SkMultiPictureDocumentRead(stream.get(), &fPages[0], fPages.count())) { in draw()
1278 page = fPages[i].fPicture.get(); in draw()
DDMSrcSink.h315 mutable SkTArray<SkDocumentPage> fPages; variable
/third_party/skia/dm/
DDMSrcSink.cpp1393 fPages.reset(count); in MSKPSrc()
1394 (void)SkMultiPictureDocumentReadPageSizes(stream.get(), &fPages[0], fPages.count()); in MSKPSrc()
1398 int MSKPSrc::pageCount() const { return fPages.count(); } in pageCount()
1402 return i >= 0 && i < fPages.count() ? fPages[i].fSize.toCeil() : SkISize{0, 0}; in size()
1412 if (i >= fPages.count() || i < 0) { in draw()
1415 SkPicture* page = fPages[i].fPicture.get(); in draw()
1421 if (!SkMultiPictureDocumentRead(stream.get(), &fPages[0], fPages.count())) { in draw()
1425 page = fPages[i].fPicture.get(); in draw()
DDMSrcSink.h371 mutable SkTArray<SkDocumentPage> fPages; variable