Searched refs:fPages (Results 1 - 7 of 7) sorted by relevance
/third_party/skia/src/gpu/ |
H A D | GrDrawOpAtlas.cpp | 291 plotIter.init(fPages[pageIdx].fPlotList, PlotList::Iter::kHead_IterStart); in uploadToPage() 338 Plot* plot = fPages[pageIdx].fPlotList.tail(); in addToAtlas() 375 Plot* currentPlot = fPages[pageIdx].fPlotList.tail(); in addToAtlas() 393 fPages[pageIdx].fPlotList.remove(plot); in addToAtlas() 394 sk_sp<Plot>& newPlot = fPages[pageIdx].fPlotArray[plot->plotIndex()]; in addToAtlas() 397 fPages[pageIdx].fPlotList.addToHead(newPlot.get()); in addToAtlas() 431 plotIter.init(fPages[pageIndex].fPlotList, PlotList::Iter::kHead_IterStart); in compactRadicals() 471 plotIter.init(fPages[pageIndex].fPlotList, PlotList::Iter::kHead_IterStart); in compact() 505 plotIter.init(fPages[pageIndex].fPlotList, PlotList::Iter::kHead_IterStart); in compact() 538 plotIter.init(fPages[lastPageInde in compact() [all...] |
H A D | GrDrawOpAtlas.h | 301 uint64_t plotGeneration = fPages[page].fPlotArray[plot]->genID(); 313 Plot* plot = fPages[pageIdx].fPlotArray[plotIdx].get(); 383 Plot* plot = fPages[pd.fPageIndex].fPlotArray[pd.fPlotIndex].get(); 509 if (fPages[pageIdx].fPlotList.head() == plot) { 513 fPages[pageIdx].fPlotList.remove(plot); 514 fPages[pageIdx].fPlotList.addToHead(plot); 563 Page fPages[kMaxMultitexturePages];
|
/third_party/skia/src/utils/ |
H A D | SkMultiPictureDocument.cpp | 55 SkTArray<sk_sp<SkPicture>> fPages; member 73 fPages.push_back(lastPage); 83 wStream->write32(SkToU32(fPages.count())); 89 for (const sk_sp<SkPicture>& page : fPages) { 96 fPages.reset(); 101 fPages.reset();
|
/third_party/skia/src/pdf/ |
H A D | SkPDFDocumentPriv.h | 135 size_t currentPageIndex() { return fPages.size(); } in currentPageIndex() 161 std::vector<std::unique_ptr<SkPDFDict>> fPages; member in SkPDFDocument
|
H A D | SkPDFDocument.cpp | 251 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/skia/dm/ |
H A D | DMSrcSink.cpp | 1393 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 in draw() [all...] |
H A D | DMSrcSink.h | 371 mutable SkTArray<SkDocumentPage> fPages; member in DM::MSKPSrc
|
Completed in 10 milliseconds