Home
last modified time | relevance | path

Searched refs:fLRUBack (Results 1 – 2 of 2) sorted by relevance

/external/skia/src/gpu/effects/
DGrTextureStripAtlas.cpp79 , fLRUBack(nullptr) { in GrTextureStripAtlas()
227 fLRUBack = nullptr; in initLRU()
236 SkASSERT(nullptr == fLRUBack || nullptr == fLRUBack->fNext); in initLRU()
241 if (nullptr == fLRUFront && nullptr == fLRUBack) { in appendLRU()
243 fLRUBack = row; in appendLRU()
245 row->fPrev = fLRUBack; in appendLRU()
246 fLRUBack->fNext = row; in appendLRU()
247 fLRUBack = row; in appendLRU()
258 SkASSERT(row == fLRUBack); in removeFromLRU()
259 fLRUBack = row->fPrev; in removeFromLRU()
[all …]
DGrTextureStripAtlas.h183 AtlasRow* fLRUBack; variable