Home
last modified time | relevance | path

Searched refs:fOpList (Results 1 – 6 of 6) sorted by relevance

/third_party/flutter/skia/src/gpu/
DGrTextureContext.cpp26 , fOpList(sk_ref_sp(fTextureProxy->getLastTextureOpList())) { in GrTextureContext()
35 if (fOpList && !fOpList->isClosed()) { in validate()
36 SkASSERT(fTextureProxy->getLastRenderTask() == fOpList.get()); in validate()
61 if (!fOpList || fOpList->isClosed()) { in getOpList()
62 fOpList = this->drawingManager()->newTextureOpList(fTextureProxy); in getOpList()
65 return fOpList.get(); in getOpList()
DGrAuditTrail.cpp43 auditOp->fOpListID = fOpList.count(); in addOp()
51 fOpList.emplace_back(opNode); in addOp()
59 SkASSERT(index < fOpList.count() && fOpList[index]); in opsCombined()
60 OpNode& consumerOp = *fOpList[index]; in opsCombined()
66 SkASSERT(consumedIndex < fOpList.count() && fOpList[consumedIndex]); in opsCombined()
67 OpNode& consumedOp = *fOpList[consumedIndex]; in opsCombined()
84 fOpList[consumedIndex].reset(nullptr); in opsCombined()
89 SkASSERT(opListID < fOpList.count()); in copyOutFromOpList()
90 const OpNode* bn = fOpList[opListID].get(); in copyOutFromOpList()
131 fOpList.reset(); in fullReset()
[all …]
DGrTextureContext.h59 sk_sp<GrTextureOpList> fOpList; variable
DGrAuditTrail.h158 OpList fOpList; variable
DGrRenderTargetContext.h505 GrRenderTargetOpList* testingOnly_PeekLastOpList() { return fOpList.get(); } in testingOnly_PeekLastOpList()
634 sk_sp<GrRenderTargetOpList> fOpList; variable
DGrRenderTargetContext.cpp152 , fOpList(sk_ref_sp(fRenderTargetProxy->getLastRenderTargetOpList())) in GrRenderTargetContext()
164 if (fOpList && !fOpList->isClosed()) { in validate()
165 SkASSERT(fRenderTargetProxy->getLastRenderTask() == fOpList.get()); in validate()
209 if (!fOpList || fOpList->isClosed()) { in getRTOpList()
210 fOpList = this->drawingManager()->newRTOpList(fRenderTargetProxy, fManagedOpList); in getRTOpList()
213 return fOpList.get(); in getRTOpList()