Home
last modified time | relevance | path

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

/external/skia/src/gpu/
DGrContext.cpp226 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()
[all …]
DSkGr.cpp135 SkDstPixelInfo dstPI; in build_index8_data() local
136 dstPI.fColorType = kRGBA_8888_SkColorType; in build_index8_data()
137 dstPI.fAlphaType = kPremul_SkAlphaType; in build_index8_data()
138 dstPI.fPixels = buffer; in build_index8_data()
139 dstPI.fRowBytes = count * sizeof(SkPMColor); in build_index8_data()
147 srcPI.convertPixelsTo(&dstPI, count, 1); in build_index8_data()
/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()