Lines Matching refs:info
65 Rec(const SkBitmapCacheDesc& desc, const SkImageInfo& info, size_t rowBytes,
70 , fInfo(info)
176 SkBitmapCache::RecPtr SkBitmapCache::Alloc(const SkBitmapCacheDesc& desc, const SkImageInfo& info,
178 // Ensure that the info matches the subset (i.e. the subset is the entire image)
179 SkASSERT(info.width() == desc.fSubset.width());
180 SkASSERT(info.height() == desc.fSubset.height());
182 const size_t rb = info.minRowBytes();
183 size_t size = info.computeByteSize(rb);
200 *pmap = SkPixmap(info, dm ? dm->data() : block, rb);
201 return RecPtr(new Rec(desc, info, rb, std::move(dm), block));