Searched refs:dstPI (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/skia/src/core/
H A DSkConfig8888.cpp152 SkDstPixelInfo dstPI; local
153 dstPI.fColorType = dstInfo.colorType();
154 dstPI.fAlphaType = dstInfo.alphaType();
155 dstPI.fPixels = dstPixels;
156 dstPI.fRowBytes = dstRB;
164 return srcPI.convertPixelsTo(&dstPI, width, height);
/external/skia/src/core/
H A DSkBitmapDevice.cpp177 SkDstPixelInfo dstPI; local
178 dstPI.fColorType = dstInfo.colorType();
179 dstPI.fAlphaType = dstInfo.alphaType();
180 dstPI.fPixels = dstPixels;
181 dstPI.fRowBytes = dstRowBytes;
189 return srcPI.convertPixelsTo(&dstPI, srcInfo.width(), srcInfo.height());
/external/skia/src/gpu/
H A DSkGr.cpp49 SkDstPixelInfo dstPI; local
50 dstPI.fColorType = kRGBA_8888_SkColorType;
51 dstPI.fAlphaType = kPremul_SkAlphaType;
52 dstPI.fPixels = buffer;
53 dstPI.fRowBytes = count * sizeof(SkPMColor);
61 srcPI.convertPixelsTo(&dstPI, count, 1);
H A DGrContext.cpp1514 SkDstPixelInfo dstPI; local
1515 if (!GrPixelConfig2ColorType(dstConfig, &dstPI.fColorType)) {
1518 dstPI.fAlphaType = kUnpremul_SkAlphaType;
1519 dstPI.fPixels = buffer;
1520 dstPI.fRowBytes = rowBytes;
1523 srcPI.fColorType = swapRAndB ? toggle_colortype32(dstPI.fColorType) : dstPI.fColorType;
1528 return srcPI.convertPixelsTo(&dstPI, width, height);
1666 SkDstPixelInfo dstPI; local
1667 dstPI
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DSkGr.cpp51 SkDstPixelInfo dstPI; local
52 dstPI.fColorType = kRGBA_8888_SkColorType;
53 dstPI.fAlphaType = kPremul_SkAlphaType;
54 dstPI.fPixels = buffer;
55 dstPI.fRowBytes = count * sizeof(SkPMColor);
63 srcPI.convertPixelsTo(&dstPI, count, 1);
H A DGrContext.cpp1530 SkDstPixelInfo dstPI; local
1531 if (!GrPixelConfig2ColorType(dstConfig, &dstPI.fColorType)) {
1534 dstPI.fAlphaType = kUnpremul_SkAlphaType;
1535 dstPI.fPixels = buffer;
1536 dstPI.fRowBytes = rowBytes;
1539 srcPI.fColorType = swapRAndB ? toggle_colortype32(dstPI.fColorType) : dstPI.fColorType;
1544 return srcPI.convertPixelsTo(&dstPI, width, height);
1681 SkDstPixelInfo dstPI; local
1682 dstPI
[all...]

Completed in 1626 milliseconds