Lines Matching refs:sizes
54 bool SkCodecImageGenerator::onGetYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3], in onGetYUV8Planes()
71 sizes[0].fWidth = (int) sizeInfo.fYWidthBytes; in onGetYUV8Planes()
72 sizes[0].fHeight = sizeInfo.fYSize.height(); in onGetYUV8Planes()
73 sizes[1].fWidth = (int) sizeInfo.fUWidthBytes; in onGetYUV8Planes()
74 sizes[1].fHeight = sizeInfo.fUSize.height(); in onGetYUV8Planes()
75 sizes[2].fWidth = (int) sizeInfo.fVWidthBytes; in onGetYUV8Planes()
76 sizes[2].fHeight = sizeInfo.fVSize.height(); in onGetYUV8Planes()
83 sizeInfo.fYSize.set(fYWidth, sizes[0].height()); in onGetYUV8Planes()
84 sizeInfo.fUSize.set(fUWidth, sizes[1].height()); in onGetYUV8Planes()
85 sizeInfo.fVSize.set(fVWidth, sizes[2].height()); in onGetYUV8Planes()
88 sizeInfo.fYWidthBytes = sizes[0].width(); in onGetYUV8Planes()
89 sizeInfo.fUWidthBytes = sizes[1].width(); in onGetYUV8Planes()
90 sizeInfo.fVWidthBytes = sizes[2].width(); in onGetYUV8Planes()