HomeSort by relevance Sort by last modified time
    Searched refs:srcPI (Results 1 - 3 of 3) sorted by null

  /external/skia/src/gpu/
GrContext.cpp 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
    [all...]
SkGr.cpp 141 SkSrcPixelInfo srcPI;
142 srcPI.fColorType = kN32_SkColorType;
143 srcPI.fAlphaType = kPremul_SkAlphaType;
144 srcPI.fPixels = ctable->readColors();
145 srcPI.fRowBytes = count * sizeof(SkPMColor);
147 srcPI.convertPixelsTo(&dstPI, count, 1);
  /external/skia/src/core/
SkConfig8888.cpp 199 SkSrcPixelInfo srcPI;
200 srcPI.fColorType = srcInfo.colorType();
201 srcPI.fAlphaType = srcInfo.alphaType();
202 srcPI.fPixels = srcPixels;
203 srcPI.fRowBytes = srcRB;
205 return srcPI.convertPixelsTo(&dstPI, width, height);

Completed in 77 milliseconds