Home
last modified time | relevance | path

Searched refs:bufferRowBytes (Results 1 – 8 of 8) sorted by relevance

/third_party/skia/experimental/graphite/src/
DCopyTask.cpp20 size_t bufferRowBytes) { in Make() argument
25 bufferRowBytes)); in Make()
32 size_t bufferRowBytes) in CopyTextureToBufferTask() argument
37 , fBufferRowBytes(bufferRowBytes) { in CopyTextureToBufferTask()
DCopyTask.h27 size_t bufferRowBytes);
38 size_t bufferRowBytes);
DCommandBuffer.cpp84 size_t bufferRowBytes) { in copyTextureToBuffer() argument
89 this->onCopyTextureToBuffer(texture.get(), srcRect, buffer.get(), bufferOffset, bufferRowBytes); in copyTextureToBuffer()
DCommandBuffer.h99 size_t bufferRowBytes);
129 size_t bufferRowBytes) = 0;
/third_party/skia/experimental/graphite/src/mtl/
DMtlBlitCommandEncoder.h47 size_t bufferRowBytes) { in copyFromTexture() argument
55 destinationBytesPerRow: bufferRowBytes in copyFromTexture()
56 destinationBytesPerImage: bufferRowBytes * srcRect.height()]; in copyFromTexture()
DMtlCommandBuffer.h76 size_t bufferRowBytes) override;
DMtlCommandBuffer.mm270 size_t bufferRowBytes) {
281 blitCmdEncoder->copyFromTexture(mtlTexture, srcRect, mtlBuffer, bufferOffset, bufferRowBytes);
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
DVkImage.cpp308 int bufferRowBytes = backingMemory.stride * getFormat().bytes(); in prepareForExternalUseANDROID() local
309 ASSERT(imageRowBytes <= bufferRowBytes); in prepareForExternalUseANDROID()
315 memcpy(dstBuffer + (i * bufferRowBytes), srcBuffer + (i * imageRowBytes), imageRowBytes); in prepareForExternalUseANDROID()