Searched refs:fLRUBack (Results 1 – 2 of 2) sorted by relevance
80 , fLRUBack(NULL) { in GrTextureStripAtlas()229 fLRUBack = NULL; in initLRU()238 SkASSERT(NULL == fLRUBack || NULL == fLRUBack->fNext); in initLRU()243 if (NULL == fLRUFront && NULL == fLRUBack) { in appendLRU()245 fLRUBack = row; in appendLRU()247 row->fPrev = fLRUBack; in appendLRU()248 fLRUBack->fNext = row; in appendLRU()249 fLRUBack = row; in appendLRU()260 SkASSERT(row == fLRUBack); in removeFromLRU()261 fLRUBack = row->fPrev; in removeFromLRU()[all …]
181 AtlasRow* fLRUBack; variable