Home
last modified time | relevance | path

Searched refs:requestedDstInfo (Results 1 – 2 of 2) sorted by relevance

/external/skia/src/core/
DSkPixmap.cpp76 bool SkPixmap::readPixels(const SkImageInfo& requestedDstInfo, void* dstPixels, size_t dstRB, in readPixels() argument
78 if (kUnknown_SkColorType == requestedDstInfo.colorType()) { in readPixels()
81 if (nullptr == dstPixels || dstRB < requestedDstInfo.minRowBytes()) { in readPixels()
84 if (0 == requestedDstInfo.width() || 0 == requestedDstInfo.height()) { in readPixels()
88 SkIRect srcR = SkIRect::MakeXYWH(x, y, requestedDstInfo.width(), requestedDstInfo.height()); in readPixels()
94 const SkImageInfo dstInfo = requestedDstInfo.makeWH(srcR.width(), srcR.height()); in readPixels()
DSkBitmap.cpp823 bool SkBitmap::readPixels(const SkImageInfo& requestedDstInfo, void* dstPixels, size_t dstRB, in readPixels() argument
829 return src.pixmap().readPixels(requestedDstInfo, dstPixels, dstRB, x, y); in readPixels()