Home
last modified time | relevance | path

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

/external/skia/src/gpu/graphite/mtl/
DMtlBlitCommandEncoder.h60 size_t bufferRowBytes) { in copyFromTexture() argument
68 destinationBytesPerRow: bufferRowBytes in copyFromTexture()
69 destinationBytesPerImage: bufferRowBytes * srcRect.height()]; in copyFromTexture()
74 size_t bufferRowBytes, in copyFromBuffer() argument
80 sourceBytesPerRow: bufferRowBytes in copyFromBuffer()
81 sourceBytesPerImage: bufferRowBytes * dstRect.height() in copyFromBuffer()
DMtlCommandBuffer.h148 size_t bufferRowBytes) override;
DMtlCommandBuffer.mm833 size_t bufferRowBytes) {
852 blitCmdEncoder->copyFromTexture(mtlTexture, srcRect, mtlBuffer, bufferOffset, bufferRowBytes);
/external/skia/src/gpu/graphite/task/
DCopyTask.cpp67 size_t bufferRowBytes) { in Make() argument
75 bufferRowBytes)); in Make()
82 size_t bufferRowBytes) in CopyTextureToBufferTask() argument
87 , fBufferRowBytes(bufferRowBytes) { in CopyTextureToBufferTask()
DCopyTask.h60 size_t bufferRowBytes);
75 size_t bufferRowBytes);
/external/skia/src/gpu/graphite/
DCommandBuffer.h113 size_t bufferRowBytes);
185 size_t bufferRowBytes) = 0;
DCommandBuffer.cpp200 size_t bufferRowBytes) { in copyTextureToBuffer() argument
205 bufferRowBytes)) { in copyTextureToBuffer()
/external/skia/src/gpu/graphite/dawn/
DDawnCommandBuffer.h142 size_t bufferRowBytes) override;
DDawnCommandBuffer.cpp1138 size_t bufferRowBytes) { in onCopyTextureToBuffer() argument
1154 dst.layout.bytesPerRow = bufferRowBytes; in onCopyTextureToBuffer()
/external/skia/src/gpu/graphite/vk/
DVulkanCommandBuffer.h152 size_t bufferRowBytes) override;
DVulkanCommandBuffer.cpp1481 size_t bufferRowBytes) { in onCopyTextureToBuffer() argument
1493 region.bufferRowLength = (uint32_t)(bufferRowBytes/bytesPerBlock); in onCopyTextureToBuffer()
/external/swiftshader/src/Vulkan/
DVkImage.cpp356 int bufferRowBytes = backingMemory.nativeBufferInfo.stride * getFormat().bytes(); in prepareForExternalUseANDROID() local
357 ASSERT(imageRowBytes <= bufferRowBytes); in prepareForExternalUseANDROID()
363 memcpy(dstBuffer + (i * bufferRowBytes), srcBuffer + (i * imageRowBytes), imageRowBytes); in prepareForExternalUseANDROID()