Lines Matching refs:dstPI
1514 SkDstPixelInfo dstPI; in readRenderTargetPixels() local
1515 if (!GrPixelConfig2ColorType(dstConfig, &dstPI.fColorType)) { in readRenderTargetPixels()
1518 dstPI.fAlphaType = kUnpremul_SkAlphaType; in readRenderTargetPixels()
1519 dstPI.fPixels = buffer; in readRenderTargetPixels()
1520 dstPI.fRowBytes = rowBytes; in readRenderTargetPixels()
1523 srcPI.fColorType = swapRAndB ? toggle_colortype32(dstPI.fColorType) : dstPI.fColorType; in readRenderTargetPixels()
1528 return srcPI.convertPixelsTo(&dstPI, width, height); in readRenderTargetPixels()
1666 SkDstPixelInfo dstPI; in writeRenderTargetPixels() local
1667 dstPI.fColorType = srcPI.fColorType; in writeRenderTargetPixels()
1668 dstPI.fAlphaType = kPremul_SkAlphaType; in writeRenderTargetPixels()
1669 dstPI.fPixels = tmpPixels.get(); in writeRenderTargetPixels()
1670 dstPI.fRowBytes = 4 * width; in writeRenderTargetPixels()
1672 if (!srcPI.convertPixelsTo(&dstPI, width, height)) { in writeRenderTargetPixels()