Lines Matching refs:planes
32 void* planes[SkYUVASizeInfo::kMaxCount]; in getPlanes() local
35 planes[0] = (void*)data->data(); // we should always have at least one plane in getPlanes()
41 planes[i] = nullptr; in getPlanes()
45 planes[i] = (uint8_t*)planes[i-1] + (yuvInfo.fSizeInfo.fWidthBytes[i-1] * in getPlanes()
65 planes[0] = data->writable_data(); in getPlanes()
71 planes[i] = nullptr; in getPlanes()
75 planes[i] = (uint8_t*)planes[i-1] + (yuvInfo.fSizeInfo.fWidthBytes[i-1] * in getPlanes()
80 if (!this->onGetYUVA8Planes(yuvInfo.fSizeInfo, yuvInfo.fYUVAIndices, planes)) { in getPlanes()
91 constPlanes[0] = planes[0]; in getPlanes()
92 constPlanes[1] = planes[1]; in getPlanes()
93 constPlanes[2] = planes[2]; in getPlanes()
94 constPlanes[3] = planes[3]; in getPlanes()
112 const void* planes[SkYUVASizeInfo::kMaxCount]; in refAsTextureProxy() local
115 &yuvColorSpace, planes); in refAsTextureProxy()
138 SkPixmap pixmap(imageInfo, planes[i], yuvSizeInfo.fWidthBytes[i]); in refAsTextureProxy()