Home
last modified time | relevance | path

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

/external/skia/src/gpu/
DGrTextureToYUVPlanes.cpp173 SkAutoSTMalloc<128 * 128, uint32_t> tempYUV(yuvSize.fWidth * yuvSize.fHeight); in GrTextureToYUVPlanes() local
175 kRGBA_8888_GrPixelConfig, tempYUV.get(), 0)) { in GrTextureToYUVPlanes()
188 uint32_t y = GrColorUnpackR(tempYUV.get()[j * yuvSize.fWidth + i]); in GrTextureToYUVPlanes()
189 uint32_t u = GrColorUnpackG(tempYUV.get()[j * yuvSize.fWidth + i]); in GrTextureToYUVPlanes()
190 uint32_t v = GrColorUnpackB(tempYUV.get()[j * yuvSize.fWidth + i]); in GrTextureToYUVPlanes()