Lines Matching refs:fInfo
147 if (nullptr == fPixels || fRowBytes < fInfo.minRowBytes()) {
150 if (0 >= fInfo.width() || 0 >= fInfo.height()) {
156 SkIRect srcR = SkIRect::MakeXYWH(x, y, fInfo.width(), fInfo.height());
170 fPixels = ((char*)fPixels + -y*fRowBytes + -x*fInfo.bytesPerPixel());
172 fInfo = fInfo.makeDimensions(srcR.size());
184 if (nullptr == fPixels || fRowBytes < fInfo.minRowBytes()) {
187 if (0 >= fInfo.width() || 0 >= fInfo.height()) {
193 SkIRect dstR = SkIRect::MakeXYWH(x, y, fInfo.width(), fInfo.height());
207 fPixels = ((const char*)fPixels + -y*fRowBytes + -x*fInfo.bytesPerPixel());
209 fInfo = fInfo.makeDimensions(dstR.size());