Home
last modified time | relevance | path

Searched refs:trimRowBytes (Results 1 – 25 of 32) sorted by relevance

12

/dports/www/firefox-esr/firefox-91.8.0/gfx/skia/skia/src/core/
H A DSkConvertPixels.h20 size_t trimRowBytes, int rowCount) { in SkRectMemcpy() argument
21 SkASSERT(trimRowBytes <= dstRB); in SkRectMemcpy()
22 SkASSERT(trimRowBytes <= srcRB); in SkRectMemcpy()
23 if (trimRowBytes == dstRB && trimRowBytes == srcRB) { in SkRectMemcpy()
24 memcpy(dst, src, trimRowBytes * rowCount); in SkRectMemcpy()
29 memcpy(dst, src, trimRowBytes); in SkRectMemcpy()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/skia/skia/src/core/
H A DSkConvertPixels.h20 size_t trimRowBytes, int rowCount) { in SkRectMemcpy() argument
21 SkASSERT(trimRowBytes <= dstRB); in SkRectMemcpy()
22 SkASSERT(trimRowBytes <= srcRB); in SkRectMemcpy()
23 if (trimRowBytes == dstRB && trimRowBytes == srcRB) { in SkRectMemcpy()
24 memcpy(dst, src, trimRowBytes * rowCount); in SkRectMemcpy()
29 memcpy(dst, src, trimRowBytes); in SkRectMemcpy()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/src/core/
H A DSkConvertPixels.h20 size_t trimRowBytes, int rowCount) { in SkRectMemcpy() argument
21 SkASSERT(trimRowBytes <= dstRB); in SkRectMemcpy()
22 SkASSERT(trimRowBytes <= srcRB); in SkRectMemcpy()
23 if (trimRowBytes == dstRB && trimRowBytes == srcRB) { in SkRectMemcpy()
24 memcpy(dst, src, trimRowBytes * rowCount); in SkRectMemcpy()
29 memcpy(dst, src, trimRowBytes); in SkRectMemcpy()
/dports/www/firefox/firefox-99.0/gfx/skia/skia/src/core/
H A DSkConvertPixels.h20 size_t trimRowBytes, int rowCount) { in SkRectMemcpy() argument
21 SkASSERT(trimRowBytes <= dstRB); in SkRectMemcpy()
22 SkASSERT(trimRowBytes <= srcRB); in SkRectMemcpy()
23 if (trimRowBytes == dstRB && trimRowBytes == srcRB) { in SkRectMemcpy()
24 memcpy(dst, src, trimRowBytes * rowCount); in SkRectMemcpy()
29 memcpy(dst, src, trimRowBytes); in SkRectMemcpy()
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/skia/skia/src/core/
H A DSkConvertPixels.h20 size_t trimRowBytes, int rowCount) { in SkRectMemcpy() argument
21 SkASSERT(trimRowBytes <= dstRB); in SkRectMemcpy()
22 SkASSERT(trimRowBytes <= srcRB); in SkRectMemcpy()
23 if (trimRowBytes == dstRB && trimRowBytes == srcRB) { in SkRectMemcpy()
24 memcpy(dst, src, trimRowBytes * rowCount); in SkRectMemcpy()
29 memcpy(dst, src, trimRowBytes); in SkRectMemcpy()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/src/core/
H A DSkConvertPixels.h20 size_t trimRowBytes, int rowCount) { in SkRectMemcpy() argument
21 SkASSERT(trimRowBytes <= dstRB); in SkRectMemcpy()
22 SkASSERT(trimRowBytes <= srcRB); in SkRectMemcpy()
23 if (trimRowBytes == dstRB && trimRowBytes == srcRB) { in SkRectMemcpy()
24 memcpy(dst, src, trimRowBytes * rowCount); in SkRectMemcpy()
29 memcpy(dst, src, trimRowBytes); in SkRectMemcpy()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/src/gpu/dawn/
H A DGrDawnTexture.cpp151 size_t trimRowBytes = width * SkColorTypeBytesPerPixel(colorType); in upload() local
152 size_t dstRowBytes = GrDawnRoundRowBytes(trimRowBytes); in upload()
155 SkRectMemcpy(stagingBuffer->fData, dstRowBytes, src, srcRowBytes, trimRowBytes, height); in upload()
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/skia/skia/src/gpu/vk/
H A DGrVkGpu.cpp455 size_t trimRowBytes = width * bpp; in uploadTexDataLinear() local
489 memcpy(dstRow, srcRow, trimRowBytes); in uploadTexDataLinear()
495 if (trimRowBytes == rowBytes && trimRowBytes == layout.rowPitch) { in uploadTexDataLinear()
496 memcpy(mapPtr, data, trimRowBytes * height); in uploadTexDataLinear()
498 SkRectMemcpy(mapPtr, static_cast<size_t>(layout.rowPitch), data, rowBytes, trimRowBytes, in uploadTexDataLinear()
584 const size_t trimRowBytes = currentWidth * bpp; in uploadTexDataOptimal() local
593 memcpy(dst, src, trimRowBytes); in uploadTexDataOptimal()
595 dst += trimRowBytes; in uploadTexDataOptimal()
597 } else if (trimRowBytes == rowBytes) { in uploadTexDataOptimal()
598 memcpy(dst, src, trimRowBytes * currentHeight); in uploadTexDataOptimal()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/skia/skia/src/gpu/
H A DGrContext.cpp1048 size_t trimRowBytes = GrColorTypeBytesPerPixel(srcColorType) * width; in writeSurfacePixels2() local
1049 tempBuffer.reset(new char[trimRowBytes * height]); in writeSurfacePixels2()
1050 char* dst = reinterpret_cast<char*>(tempBuffer.get()) + trimRowBytes * (height - 1); in writeSurfacePixels2()
1052 for (int i = 0; i < height; ++i, src += rowBytes, dst -= trimRowBytes) { in writeSurfacePixels2()
1053 memcpy(dst, src, trimRowBytes); in writeSurfacePixels2()
1056 rowBytes = trimRowBytes; in writeSurfacePixels2()
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/skia/skia/src/gpu/vk/
H A DGrVkGpu.cpp557 size_t trimRowBytes = width * bpp; in uploadTexDataLinear() local
559 rowBytes = trimRowBytes; in uploadTexDataLinear()
609 memcpy(dstRow, srcRow, trimRowBytes); in uploadTexDataLinear()
614 SkRectMemcpy(mapPtr, static_cast<size_t>(layout.rowPitch), data, rowBytes, trimRowBytes, in uploadTexDataLinear()
706 const size_t trimRowBytes = currentWidth * bpp; in uploadTexDataOptimal() local
709 : trimRowBytes; in uploadTexDataOptimal()
717 memcpy(dst, src, trimRowBytes); in uploadTexDataOptimal()
719 dst += trimRowBytes; in uploadTexDataOptimal()
722 SkRectMemcpy(dst, trimRowBytes, src, rowBytes, trimRowBytes, currentHeight); in uploadTexDataOptimal()
/dports/www/firefox-esr/firefox-91.8.0/gfx/skia/skia/src/gpu/mtl/
H A DGrMtlGpu.mm310 const size_t trimRowBytes = currentWidth * bpp;
316 SkRectMemcpy(dst, trimRowBytes, src, rowBytes, trimRowBytes, currentHeight);
320 sourceBytesPerRow: trimRowBytes
321 sourceBytesPerImage: trimRowBytes*currentHeight
886 size_t trimRowBytes = currentWidth * bytesPerPixel;
887 size_t levelSize = trimRowBytes*currentHeight;
892 sourceBytesPerRow: trimRowBytes
/dports/www/firefox/firefox-99.0/gfx/skia/skia/src/gpu/mtl/
H A DGrMtlGpu.mm310 const size_t trimRowBytes = currentWidth * bpp;
316 SkRectMemcpy(dst, trimRowBytes, src, rowBytes, trimRowBytes, currentHeight);
320 sourceBytesPerRow: trimRowBytes
321 sourceBytesPerImage: trimRowBytes*currentHeight
886 size_t trimRowBytes = currentWidth * bytesPerPixel;
887 size_t levelSize = trimRowBytes*currentHeight;
892 sourceBytesPerRow: trimRowBytes
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/skia/skia/src/gpu/mtl/
H A DGrMtlGpu.mm310 const size_t trimRowBytes = currentWidth * bpp;
316 SkRectMemcpy(dst, trimRowBytes, src, rowBytes, trimRowBytes, currentHeight);
320 sourceBytesPerRow: trimRowBytes
321 sourceBytesPerImage: trimRowBytes*currentHeight
886 size_t trimRowBytes = currentWidth * bytesPerPixel;
887 size_t levelSize = trimRowBytes*currentHeight;
892 sourceBytesPerRow: trimRowBytes
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/skia/skia/src/gpu/mtl/
H A DGrMtlGpu.mm310 const size_t trimRowBytes = currentWidth * bpp;
316 SkRectMemcpy(dst, trimRowBytes, src, rowBytes, trimRowBytes, currentHeight);
320 sourceBytesPerRow: trimRowBytes
321 sourceBytesPerImage: trimRowBytes*currentHeight
886 size_t trimRowBytes = currentWidth * bytesPerPixel;
887 size_t levelSize = trimRowBytes*currentHeight;
892 sourceBytesPerRow: trimRowBytes
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/skia/skia/src/gpu/gl/
H A DGrGLGpu.cpp843 const size_t trimRowBytes = width * bpp; in onTransferPixels() local
845 rowBytes = trimRowBytes; in onTransferPixels()
853 if (trimRowBytes != rowBytes) { in onTransferPixels()
1110 const size_t trimRowBytes = currentWidth * bpp; in uploadTexData() local
1115 : trimRowBytes; in uploadTexData()
1147 const size_t trimRowBytes = currentWidth * bpp; in uploadTexData() local
1159 : trimRowBytes; in uploadTexData()
1166 if (rowBytes != trimRowBytes) { in uploadTexData()
1171 } else if (trimRowBytes != rowBytes || swFlipY) { in uploadTexData()
1179 memcpy(dst, src, trimRowBytes); in uploadTexData()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/src/gpu/d3d/
H A DGrD3DGpu.cpp760 const size_t trimRowBytes = currentWidth * bpp; in uploadToTexture() local
768 src, srcRowBytes, trimRowBytes, currentHeight); in uploadToTexture()
1055 const size_t trimRowBytes = srcData[currentMipLevel].width() * bytesPerPixel; in copy_src_data() local
1061 trimRowBytes, srcData[currentMipLevel].height()); in copy_src_data()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/src/gpu/dawn/
H A DGrDawnGpu.cpp351 size_t trimRowBytes = width * SkColorTypeBytesPerPixel(colorType); in uploadTextureData() local
352 size_t dstRowBytes = GrDawnRoundRowBytes(trimRowBytes); in uploadTextureData()
356 SkRectMemcpy(slice.fOffsetMapPtr, dstRowBytes, src, srcRowBytes, trimRowBytes, height); in uploadTextureData()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/src/gpu/mtl/
H A DGrMtlGpu.mm309 const size_t trimRowBytes = currentWidth * bpp;
315 SkRectMemcpy(dst, trimRowBytes, src, rowBytes, trimRowBytes, currentHeight);
319 sourceBytesPerRow: trimRowBytes
320 sourceBytesPerImage: trimRowBytes*currentHeight
/dports/www/firefox-esr/firefox-91.8.0/gfx/skia/skia/src/gpu/vk/
H A DGrVkGpu.cpp638 size_t trimRowBytes = width * bpp; in uploadTexDataLinear() local
669 SkRectMemcpy(mapPtr, static_cast<size_t>(layout.rowPitch), data, rowBytes, trimRowBytes, in uploadTexDataLinear()
815 const size_t trimRowBytes = currentWidth * bpp; in uploadTexDataOptimal() local
821 SkRectMemcpy(dst, trimRowBytes, src, rowBytes, trimRowBytes, currentHeight); in uploadTexDataOptimal()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/skia/skia/src/gpu/vk/
H A DGrVkGpu.cpp638 size_t trimRowBytes = width * bpp; in uploadTexDataLinear() local
669 SkRectMemcpy(mapPtr, static_cast<size_t>(layout.rowPitch), data, rowBytes, trimRowBytes, in uploadTexDataLinear()
815 const size_t trimRowBytes = currentWidth * bpp; in uploadTexDataOptimal() local
821 SkRectMemcpy(dst, trimRowBytes, src, rowBytes, trimRowBytes, currentHeight); in uploadTexDataOptimal()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/src/gpu/vk/
H A DGrVkGpu.cpp661 size_t trimRowBytes = width * bpp; in uploadTexDataLinear() local
692 SkRectMemcpy(mapPtr, static_cast<size_t>(layout.rowPitch), data, rowBytes, trimRowBytes, in uploadTexDataLinear()
880 const size_t trimRowBytes = currentWidth * bpp; in uploadTexDataOptimal() local
886 SkRectMemcpy(dst, trimRowBytes, src, rowBytes, trimRowBytes, currentHeight); in uploadTexDataOptimal()
/dports/www/firefox/firefox-99.0/gfx/skia/skia/src/gpu/vk/
H A DGrVkGpu.cpp638 size_t trimRowBytes = width * bpp; in uploadTexDataLinear() local
669 SkRectMemcpy(mapPtr, static_cast<size_t>(layout.rowPitch), data, rowBytes, trimRowBytes, in uploadTexDataLinear()
815 const size_t trimRowBytes = currentWidth * bpp; in uploadTexDataOptimal() local
821 SkRectMemcpy(dst, trimRowBytes, src, rowBytes, trimRowBytes, currentHeight); in uploadTexDataOptimal()
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/skia/skia/src/gpu/vk/
H A DGrVkGpu.cpp638 size_t trimRowBytes = width * bpp; in uploadTexDataLinear() local
669 SkRectMemcpy(mapPtr, static_cast<size_t>(layout.rowPitch), data, rowBytes, trimRowBytes, in uploadTexDataLinear()
815 const size_t trimRowBytes = currentWidth * bpp; in uploadTexDataOptimal() local
821 SkRectMemcpy(dst, trimRowBytes, src, rowBytes, trimRowBytes, currentHeight); in uploadTexDataOptimal()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/src/gpu/mtl/
H A DGrMtlGpu.mm391 const size_t trimRowBytes = currentWidth * bpp;
397 SkRectMemcpy(dst, trimRowBytes, src, rowBytes, trimRowBytes, currentHeight);
401 sourceBytesPerRow: trimRowBytes
402 sourceBytesPerImage: trimRowBytes*currentHeight
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/src/gpu/vk/
H A DGrVkGpu.cpp689 size_t trimRowBytes = width * bpp; in uploadTexDataLinear() local
720 SkRectMemcpy(mapPtr, static_cast<size_t>(layout.rowPitch), data, rowBytes, trimRowBytes, in uploadTexDataLinear()
922 const size_t trimRowBytes = currentWidth * bpp; in uploadTexDataOptimal() local
928 SkRectMemcpy(dst, trimRowBytes, src, rowBytes, trimRowBytes, currentHeight); in uploadTexDataOptimal()

12