Searched refs:tmpInfo (Results 1 – 6 of 6) sorted by relevance
/third_party/flutter/skia/src/gpu/ |
D | GrSurfaceContext.cpp | 188 GrPixelInfo tmpInfo; in readPixels() local 192 tmpInfo = {supportedRead.fColorType, this->colorSpaceInfo().alphaType(), in readPixels() 194 size_t tmpRB = tmpInfo.minRowBytes(); in readPixels() 195 size_t size = tmpRB * tmpInfo.height(); in readPixels() 213 return GrConvertPixels(dstInfo, dst, rowBytes, tmpInfo, readDst, readRB, flip); in readPixels() 384 GrPixelInfo tmpInfo(allowedColorType, this->colorSpaceInfo().alphaType(), in writePixels() local 387 auto tmpRB = tmpInfo.minRowBytes(); in writePixels() 388 tmpPixels.reset(new char[tmpRB * tmpInfo.height()]); in writePixels() 390 GrConvertPixels(tmpInfo, tmpPixels.get(), tmpRB, srcInfo, src, rowBytes, flip); in writePixels() 392 srcColorType = tmpInfo.colorType(); in writePixels() [all …]
|
D | GrOpFlushState.cpp | 110 GrPixelInfo tmpInfo(supportedWrite.fColorType, kAT, nullptr, width, in doUpload() local 112 if (!GrConvertPixels(tmpInfo, tmpPixels.get(), tightRB, srcInfo, buffer, rowBytes)) { in doUpload()
|
/third_party/skia/src/gpu/ |
D | GrOpFlushState.cpp | 125 GrImageInfo tmpInfo(supportedWrite.fColorType, kAT, nullptr, rect.size()); in doUpload() local 126 if (!GrConvertPixels( GrPixmap(tmpInfo, tmpPixels.get(), tightRB ), in doUpload()
|
D | SurfaceContext.cpp | 231 GrImageInfo tmpInfo(supportedRead.fColorType, in readPixels() local 235 size_t tmpRB = tmpInfo.minRowBytes(); in readPixels() 236 size_t size = tmpRB * tmpInfo.height(); in readPixels() 239 tmp = {tmpInfo, tmpPixels.get(), tmpRB}; in readPixels() 507 GrImageInfo tmpInfo(allowedColorType, in internalWritePixels() local 511 auto tmpRB = tmpInfo.minRowBytes(); in internalWritePixels() 512 GrPixmap tmpPM(tmpInfo, tmp, tmpRB); in internalWritePixels()
|
/third_party/flutter/skia/tests/ |
D | TransferPixelsTest.cpp | 88 GrPixelInfo tmpInfo(supportedRead.fColorType, kUnpremul_SkAlphaType, nullptr, w, h); in read_pixels_from_texture() local 90 determine_tolerances(tmpInfo.colorType(), dstInfo.colorType(), tolerances); in read_pixels_from_texture() 91 return GrConvertPixels(dstInfo, dst, rowBytes, tmpInfo, tmpPixels.get(), tmpRowBytes, in read_pixels_from_texture()
|
/third_party/skia/tests/ |
D | TransferPixelsTest.cpp | 93 GrImageInfo tmpInfo(supportedRead.fColorType, kUnpremul_SkAlphaType, nullptr, w, h); in read_pixels_from_texture() local 95 determine_tolerances(tmpInfo.colorType(), dstInfo.colorType(), tolerances); in read_pixels_from_texture() 97 GrPixmap(tmpInfo, tmpPixels.get(), tmpRowBytes)); in read_pixels_from_texture()
|