• Home
  • Raw
  • Download

Lines Matching refs:frameIndex

162 void SkGifCodec::initializeColorTable(const SkImageInfo& dstInfo, int frameIndex) {  in initializeColorTable()  argument
168 sk_sp<SkColorTable> currColorTable = fReader->getColorTable(colorTableColorType, frameIndex); in initializeColorTable()
190 const int frameIndex = opts.fFrameIndex; in prepareToDecode() local
191 if (frameIndex > 0 && kRGB_565_SkColorType == dstInfo.colorType()) { in prepareToDecode()
209 const auto* frame = fReader->frameContext(frameIndex); in prepareToDecode()
211 if (0 == frameIndex) { in prepareToDecode()
223 SkASSERT(frameIndex < fReader->imagesCount()); in prepareToDecode()
234 this->initializeColorTable(dstInfo, frameIndex); in prepareToDecode()
235 this->initializeSwizzler(dstInfo, frameIndex); in prepareToDecode()
241 void SkGifCodec::initializeSwizzler(const SkImageInfo& dstInfo, int frameIndex) { in initializeSwizzler() argument
242 const SkGIFFrameContext* frame = fReader->frameContext(frameIndex); in initializeSwizzler()
325 const int frameIndex = options.fFrameIndex; in onIncrementalDecode() local
326 fReader->parse((SkGifImageReader::SkGIFParseQuery) frameIndex); in onIncrementalDecode()
337 const int frameIndex = opts.fFrameIndex; in decodeFrame() local
338 SkASSERT(frameIndex < fReader->imagesCount()); in decodeFrame()
339 const SkGIFFrameContext* frameContext = fReader->frameContext(frameIndex); in decodeFrame()
386 const bool fatalError = !fReader->decode(frameIndex, &frameDecoded); in decodeFrame()
431 void SkGifCodec::haveDecodedRow(int frameIndex, const unsigned char* rowBegin, in haveDecodedRow() argument
434 const SkGIFFrameContext* frameContext = fReader->frameContext(frameIndex); in haveDecodedRow()