Home | History | Annotate | Download | only in gpu

Lines Matching refs:srcPI

218     SkSrcPixelInfo srcPI;
219 if (!GrPixelConfig2ColorAndProfileType(srcConfig, &srcPI.fColorType, nullptr)) {
222 srcPI.fAlphaType = kUnpremul_SkAlphaType;
223 srcPI.fPixels = inPixels;
224 srcPI.fRowBytes = inRowBytes;
227 dstPI.fColorType = srcPI.fColorType;
232 return srcPI.convertPixelsTo(&dstPI, width, height);
489 SkSrcPixelInfo srcPI;
490 srcPI.fColorType = dstPI.fColorType;
491 srcPI.fAlphaType = kPremul_SkAlphaType;
492 srcPI.fPixels = buffer;
493 srcPI.fRowBytes = rowBytes;
495 return srcPI.convertPixelsTo(&dstPI, width, height);