Lines Matching refs:dstInfo
27 SkCodec::Result SkBmpMaskCodec::onGetPixels(const SkImageInfo& dstInfo, in onGetPixels() argument
35 if (dstInfo.dimensions() != this->dimensions()) { in onGetPixels()
40 Result result = this->prepareToDecode(dstInfo, opts); in onGetPixels()
45 int rows = this->decodeRows(dstInfo, dst, dstRowBytes, opts); in onGetPixels()
46 if (rows != dstInfo.height()) { in onGetPixels()
53 SkCodec::Result SkBmpMaskCodec::onPrepareToDecode(const SkImageInfo& dstInfo, in onPrepareToDecode() argument
56 this->resetXformBuffer(dstInfo.width()); in onPrepareToDecode()
59 SkImageInfo swizzlerInfo = dstInfo; in onPrepareToDecode()
62 if (kPremul_SkAlphaType == dstInfo.alphaType()) { in onPrepareToDecode()
78 int SkBmpMaskCodec::decodeRows(const SkImageInfo& dstInfo, in decodeRows() argument
83 const int height = dstInfo.height(); in decodeRows()