Searched refs:tightRowBytes (Results 1 – 6 of 6) sorted by relevance
/external/skia/tests/ |
D | WritePixelsTest.cpp | 419 for (auto& tightRowBytes : { true, false }) { in DEF_TEST() 420 const size_t rowBytes = tightRowBytes ? info.minRowBytes() : 4 * DEV_W + 100; in DEF_TEST() 424 if (!tightRowBytes) { in DEF_TEST()
|
/external/skqp/tests/ |
D | WritePixelsTest.cpp | 420 for (auto& tightRowBytes : { true, false }) { in DEF_TEST() 421 const size_t rowBytes = tightRowBytes ? info.minRowBytes() : 4 * DEV_W + 100; in DEF_TEST() 425 if (!tightRowBytes) { in DEF_TEST()
|
/external/skqp/src/gpu/gl/ |
D | GrGLGpu.cpp | 2366 size_t tightRowBytes = bytesPerPixel * width; in onReadPixels() local 2368 size_t readDstRowBytes = tightRowBytes; in onReadPixels() 2373 if (rowBytes != tightRowBytes) { in onReadPixels() 2379 scratch.reset(tightRowBytes * height); in onReadPixels() 2407 if (readDstRowBytes != tightRowBytes) { in onReadPixels() 2414 SkASSERT(rowBytes != tightRowBytes); in onReadPixels() 2417 SkRectMemcpy(dst, rowBytes, src, readDstRowBytes, tightRowBytes, height); in onReadPixels()
|
/external/skia/src/gpu/d3d/ |
D | GrD3DGpu.cpp | 608 size_t tightRowBytes = bpp * width; in onReadPixels() local 628 tightRowBytes, height); in onReadPixels()
|
/external/skqp/src/gpu/vk/ |
D | GrVkGpu.cpp | 2145 size_t tightRowBytes = bpp * width; in onReadPixels() local 2201 SkRectMemcpy(buffer, rowBytes, mappedMemory, transBufferRowBytes, tightRowBytes, height); in onReadPixels()
|
/external/skia/src/gpu/vk/ |
D | GrVkGpu.cpp | 2383 size_t tightRowBytes = bpp * width; in onReadPixels() local 2431 SkRectMemcpy(buffer, rowBytes, mappedMemory, transBufferRowBytes, tightRowBytes, height); in onReadPixels()
|