Home | History | Annotate | Download | only in gpu

Lines Matching refs:srcPI

1383     SkSrcPixelInfo srcPI;
1384 if (!GrPixelConfig2ColorAndProfileType(srcConfig, &srcPI.fColorType, NULL)) {
1387 srcPI.fAlphaType = kUnpremul_SkAlphaType;
1388 srcPI.fPixels = inPixels;
1389 srcPI.fRowBytes = inRowBytes;
1392 dstPI.fColorType = srcPI.fColorType;
1397 return srcPI.convertPixelsTo(&dstPI, width, height);
1660 SkSrcPixelInfo srcPI;
1661 srcPI.fColorType = swapRAndB ? toggle_colortype32(dstPI.fColorType) : dstPI.fColorType;
1662 srcPI.fAlphaType = kPremul_SkAlphaType;
1663 srcPI.fPixels = buffer;
1664 srcPI.fRowBytes = rowBytes;
1666 return srcPI.convertPixelsTo(&dstPI, width, height);