Lines Matching defs:planes
888 const std::array<SkPixmap, SkYUVAPixmaps::kMaxPlanes>& planes = yuvaPixmaps.planes();
900 SkASSERT(planes[i].colorType() == kAlpha_8_SkColorType);
901 SkASSERT(info.planeInfo(i) == planes[i].info());
922 rowptrs[i] = static_cast<JSAMPLE*>(planes[0].writable_addr()) + i* planes[0].rowBytes();
926 static_cast<JSAMPLE*>(planes[1].writable_addr()) + i* planes[1].rowBytes();
928 static_cast<JSAMPLE*>(planes[2].writable_addr()) + i* planes[2].rowBytes();
932 size_t blockIncrementY = numYRowsPerBlock * planes[0].rowBytes();
933 size_t blockIncrementU = DCTSIZE * planes[1].rowBytes();
934 size_t blockIncrementV = DCTSIZE * planes[2].rowBytes();
967 SkAutoTMalloc<JSAMPLE> extraRow(planes[0].rowBytes());