Home | History | Annotate | Download | only in gpu

Lines Matching refs:planes

32     void* planes[SkYUVASizeInfo::kMaxCount];
35 planes[0] = (void*)data->data(); // we should always have at least one plane
41 planes[i] = nullptr;
45 planes[i] = (uint8_t*)planes[i-1] + (yuvInfo.fSizeInfo.fWidthBytes[i-1] *
65 planes[0] = data->writable_data();
71 planes[i] = nullptr;
75 planes[i] = (uint8_t*)planes[i-1] + (yuvInfo.fSizeInfo.fWidthBytes[i-1] *
79 // Get the YUV planes.
80 if (!this->onGetYUVA8Planes(yuvInfo.fSizeInfo, yuvInfo.fYUVAIndices, planes)) {
84 // Decoding is done, cache the resulting YUV planes
91 constPlanes[0] = planes[0];
92 constPlanes[1] = planes[1];
93 constPlanes[2] = planes[2];
94 constPlanes[3] = planes[3];
112 const void* planes[SkYUVASizeInfo::kMaxCount];
115 &yuvColorSpace, planes);
138 SkPixmap pixmap(imageInfo, planes[i], yuvSizeInfo.fWidthBytes[i]);