Home
last modified time | relevance | path

Searched refs:dstPI (Results 1 – 3 of 3) sorted by relevance

/external/skia/src/core/
DSkConfig8888.cpp193 SkDstPixelInfo dstPI; in CopyPixels() local
194 dstPI.fColorType = dstInfo.colorType(); in CopyPixels()
195 dstPI.fAlphaType = dstInfo.alphaType(); in CopyPixels()
196 dstPI.fPixels = dstPixels; in CopyPixels()
197 dstPI.fRowBytes = dstRB; in CopyPixels()
205 return srcPI.convertPixelsTo(&dstPI, width, height); in CopyPixels()
/external/skia/src/gpu/
DGrContext.cpp1391 SkDstPixelInfo dstPI; in sw_convert_to_premul() local
1392 dstPI.fColorType = srcPI.fColorType; in sw_convert_to_premul()
1393 dstPI.fAlphaType = kPremul_SkAlphaType; in sw_convert_to_premul()
1394 dstPI.fPixels = outPixels; in sw_convert_to_premul()
1395 dstPI.fRowBytes = outRowBytes; in sw_convert_to_premul()
1397 return srcPI.convertPixelsTo(&dstPI, width, height); in sw_convert_to_premul()
1652 SkDstPixelInfo dstPI; in readRenderTargetPixels() local
1653 if (!GrPixelConfig2ColorAndProfileType(dstConfig, &dstPI.fColorType, NULL)) { in readRenderTargetPixels()
1656 dstPI.fAlphaType = kUnpremul_SkAlphaType; in readRenderTargetPixels()
1657 dstPI.fPixels = buffer; in readRenderTargetPixels()
[all …]
DSkGr.cpp55 SkDstPixelInfo dstPI; in build_index8_data() local
56 dstPI.fColorType = kRGBA_8888_SkColorType; in build_index8_data()
57 dstPI.fAlphaType = kPremul_SkAlphaType; in build_index8_data()
58 dstPI.fPixels = buffer; in build_index8_data()
59 dstPI.fRowBytes = count * sizeof(SkPMColor); in build_index8_data()
67 srcPI.convertPixelsTo(&dstPI, count, 1); in build_index8_data()