Lines Matching refs:fReader

100     fReader->clearDecodeState();  in onRewind()
106 , fReader(reader) in SkGifCodec()
121 fReader->parse(SkGifImageReader::SkGIFFrameCountQuery); in onGetFrameCount()
122 return fReader->imagesCount(); in onGetFrameCount()
126 if (i >= fReader->imagesCount()) { in onGetFrameInfo()
130 const SkGIFFrameContext* frameContext = fReader->frameContext(i); in onGetFrameInfo()
145 fReader->parse(SkGifImageReader::SkGIFLoopCountQuery); in onGetRepetitionCount()
146 return fReader->loopCount(); in onGetRepetitionCount()
157 sk_sp<SkColorTable> currColorTable = fReader->getColorTable(colorTableColorType, frameIndex); in initializeColorTable()
198 const auto* frame = fReader->frameContext(frameIndex); in prepareToDecode()
203 fReader->parse((SkGifImageReader::SkGIFParseQuery) 0); in prepareToDecode()
212 SkASSERT(frameIndex < fReader->imagesCount()); in prepareToDecode()
231 const SkGIFFrameContext* frame = fReader->frameContext(frameIndex); in initializeSwizzler()
236 const int xEnd = std::min(frame->frameRect().right(), fReader->screenWidth()); in initializeSwizzler()
315 fReader->parse((SkGifImageReader::SkGIFParseQuery) frameIndex); in onIncrementalDecode()
327 SkASSERT(frameIndex < fReader->imagesCount()); in decodeFrame()
328 const SkGIFFrameContext* frameContext = fReader->frameContext(frameIndex); in decodeFrame()
372 const bool fatalError = !fReader->decode(frameIndex, &frameDecoded); in decodeFrame()
414 const SkGIFFrameContext* frameContext = fReader->frameContext(frameIndex); in haveDecodedRow()