Lines Matching refs:fStackDepth
146 while (fStackDepth > 0) { in updateClip()
169 SkASSERT(fStackDepth > 0); in updateMatrix()
170 SkASSERT(fEntries[fStackDepth].fClipStackGenID == in updateMatrix()
171 fEntries[fStackDepth -1].fClipStackGenID); in updateMatrix()
220 SkASSERT(fStackDepth < kMaxStackDepth); in push()
222 ++fStackDepth; in push()
223 fEntries[fStackDepth] = fEntries[fStackDepth - 1]; in push()
227 SkASSERT(fStackDepth > 0); in pop()
229 fEntries[fStackDepth] = SkPDFGraphicStackState::Entry(); in pop()
230 --fStackDepth; in pop()
235 while (fStackDepth) { in drainStack()
239 SkASSERT(fStackDepth == 0); in drainStack()