Lines Matching refs:srcPixels
293 uint8_t* srcPixels = nullptr; in copyBufferContents() local
294 src->lock(GRALLOC_USAGE_SW_READ_OFTEN, (void**)&srcPixels); in copyBufferContents()
300 if (srcPixels && tgtPixels) { in copyBufferContents()
305 Utils::copyNV21toRGB32(width, height, srcPixels, tgtPixels, pTgtDesc->stride); in copyBufferContents()
308 Utils::copyYV12toRGB32(width, height, srcPixels, tgtPixels, pTgtDesc->stride); in copyBufferContents()
311 Utils::copyYUYVtoRGB32(width, height, srcPixels, pSrcDesc->stride, tgtPixels, in copyBufferContents()
314 Utils::copyMatchedInterleavedFormats(width, height, srcPixels, pSrcDesc->stride, in copyBufferContents()
325 Utils::copyNV21toBGR32(width, height, srcPixels, tgtPixels, pTgtDesc->stride); in copyBufferContents()
328 Utils::copyYV12toBGR32(width, height, srcPixels, tgtPixels, pTgtDesc->stride); in copyBufferContents()
331 Utils::copyYUYVtoBGR32(width, height, srcPixels, pSrcDesc->stride, tgtPixels, in copyBufferContents()
334 Utils::copyMatchedInterleavedFormats(width, height, srcPixels, pSrcDesc->stride, in copyBufferContents()
351 if (srcPixels) { in copyBufferContents()