Home
last modified time | relevance | path

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

/third_party/flutter/skia/src/gpu/
DGrSurfaceContext.cpp194 size_t tmpRB = tmpInfo.minRowBytes(); in readPixels() local
195 size_t size = tmpRB * tmpInfo.height(); in readPixels()
200 readRB = tmpRB; in readPixels()
387 auto tmpRB = tmpInfo.minRowBytes(); in writePixels() local
388 tmpPixels.reset(new char[tmpRB * tmpInfo.height()]); in writePixels()
390 GrConvertPixels(tmpInfo, tmpPixels.get(), tmpRB, srcInfo, src, rowBytes, flip); in writePixels()
393 rowBytes = tmpRB; in writePixels()
/third_party/skia/src/gpu/
DSurfaceContext.cpp235 size_t tmpRB = tmpInfo.minRowBytes(); in readPixels() local
236 size_t size = tmpRB * tmpInfo.height(); in readPixels()
239 tmp = {tmpInfo, tmpPixels.get(), tmpRB}; in readPixels()
242 readRB = tmpRB; in readPixels()
511 auto tmpRB = tmpInfo.minRowBytes(); in internalWritePixels() local
512 GrPixmap tmpPM(tmpInfo, tmp, tmpRB); in internalWritePixels()
515 tmp = SkTAddOffset<void>(tmp, tmpRB*tmpPM.height()); in internalWritePixels()