Lines Matching refs:dstPI
226 SkDstPixelInfo dstPI; in sw_convert_to_premul() local
227 dstPI.fColorType = srcPI.fColorType; in sw_convert_to_premul()
228 dstPI.fAlphaType = kPremul_SkAlphaType; in sw_convert_to_premul()
229 dstPI.fPixels = outPixels; in sw_convert_to_premul()
230 dstPI.fRowBytes = outRowBytes; in sw_convert_to_premul()
232 return srcPI.convertPixelsTo(&dstPI, width, height); in sw_convert_to_premul()
481 SkDstPixelInfo dstPI; in readSurfacePixels() local
482 if (!GrPixelConfig2ColorAndProfileType(dstConfig, &dstPI.fColorType, nullptr)) { in readSurfacePixels()
485 dstPI.fAlphaType = kUnpremul_SkAlphaType; in readSurfacePixels()
486 dstPI.fPixels = buffer; in readSurfacePixels()
487 dstPI.fRowBytes = rowBytes; in readSurfacePixels()
490 srcPI.fColorType = dstPI.fColorType; in readSurfacePixels()
495 return srcPI.convertPixelsTo(&dstPI, width, height); in readSurfacePixels()