Lines Matching refs:fReader
98 fReader->clearDecodeState(); in onRewind()
104 , fReader(reader) in SkLibGifCodec()
119 fReader->parse(SkGifImageReader::SkGIFFrameCountQuery); in onGetFrameCount()
120 return fReader->imagesCount(); in onGetFrameCount()
124 if (i >= fReader->imagesCount()) { in onGetFrameInfo()
128 const SkGIFFrameContext* frameContext = fReader->frameContext(i); in onGetFrameInfo()
150 fReader->parse(SkGifImageReader::SkGIFLoopCountQuery); in onGetRepetitionCount()
151 return fReader->loopCount(); in onGetRepetitionCount()
162 sk_sp<SkColorTable> currColorTable = fReader->getColorTable(colorTableColorType, frameIndex); in initializeColorTable()
203 const auto* frame = fReader->frameContext(frameIndex); in prepareToDecode()
208 fReader->parse((SkGifImageReader::SkGIFParseQuery) 0); in prepareToDecode()
217 SkASSERT(frameIndex < fReader->imagesCount()); in prepareToDecode()
236 const SkGIFFrameContext* frame = fReader->frameContext(frameIndex); in initializeSwizzler()
241 const int xEnd = std::min(frame->frameRect().right(), fReader->screenWidth()); in initializeSwizzler()
320 fReader->parse((SkGifImageReader::SkGIFParseQuery) frameIndex); in onIncrementalDecode()
332 SkASSERT(frameIndex < fReader->imagesCount()); in decodeFrame()
333 const SkGIFFrameContext* frameContext = fReader->frameContext(frameIndex); in decodeFrame()
377 const bool fatalError = !fReader->decode(frameIndex, &frameDecoded); in decodeFrame()
419 const SkGIFFrameContext* frameContext = fReader->frameContext(frameIndex); in haveDecodedRow()