Home
last modified time | relevance | path

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

/hardware/google/gfxstream/host/vulkan/
DVkCommonOperations.cpp3133 const auto& stagingBufferInfo = sVkEmulation->staging; in readBufferToBytes() local
3134 if (size > stagingBufferInfo.size) { in readBufferToBytes()
3157 vk->vkCmdCopyBuffer(commandBuffer, bufferInfo->buffer, stagingBufferInfo.buffer, 1, in readBufferToBytes()
3192 .memory = stagingBufferInfo.memory.memory, in readBufferToBytes()
3200 reinterpret_cast<const char*>(stagingBufferInfo.memory.mappedPtr)); in readBufferToBytes()
3225 const auto& stagingBufferInfo = sVkEmulation->staging; in updateBufferFromBytes() local
3226 if (size > stagingBufferInfo.size) { in updateBufferFromBytes()
3234 void* dstPtr = stagingBufferInfo.memory.mappedPtr; in updateBufferFromBytes()
3240 .memory = stagingBufferInfo.memory.memory, in updateBufferFromBytes()
3264 vk->vkCmdCopyBuffer(commandBuffer, stagingBufferInfo.buffer, bufferInfo->buffer, 1, in updateBufferFromBytes()