HomeSort by relevance Sort by last modified time
    Searched refs:bufferAlloc (Results 1 - 5 of 5) sorted by null

  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineImageUtil.cpp 177 de::MovePtr<Allocation> bufferAlloc;
200 bufferAlloc = allocator.allocate(getBufferMemoryRequirements(vk, device, *buffer), MemoryRequirement::HostVisible);
201 VK_CHECK(vk.bindBufferMemory(device, *buffer, bufferAlloc->getMemory(), bufferAlloc->getOffset()));
318 invalidateMappedMemoryRange(vk, device, bufferAlloc->getMemory(), bufferAlloc->getOffset(), pixelDataSize);
319 tcu::copy(*resultLevel, tcu::ConstPixelBufferAccess(resultLevel->getFormat(), resultLevel->getSize(), bufferAlloc->getHostPtr()));
334 de::MovePtr<Allocation> bufferAlloc;
358 bufferAlloc = allocator.allocate(getBufferMemoryRequirements(vk, device, *buffer), MemoryRequirement::HostVisible);
359 VK_CHECK(vk.bindBufferMemory(device, *buffer, bufferAlloc->getMemory(), bufferAlloc->getOffset()))
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiCopiesAndBlittingTests.cpp 109 void uploadBuffer (tcu::ConstPixelBufferAccess bufferAccess, const Allocation& bufferAlloc);
210 void CopiesAndBlittingTestInstance::uploadBuffer(tcu::ConstPixelBufferAccess bufferAccess, const Allocation& bufferAlloc)
217 deMemcpy(bufferAlloc.getHostPtr(), bufferAccess.getDataPtr(), bufferSize);
218 flushMappedMemoryRange(vk, vkDevice, bufferAlloc.getMemory(), bufferAlloc.getOffset(), bufferSize);
231 de::MovePtr<Allocation> bufferAlloc;
250 bufferAlloc = memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *buffer), MemoryRequirement::HostVisible);
251 VK_CHECK(vk.bindBufferMemory(vkDevice, *buffer, bufferAlloc->getMemory(), bufferAlloc->getOffset()));
354 deMemcpy(bufferAlloc->getHostPtr(), imageAccess.getDataPtr(), bufferSize)
    [all...]
vktApiCommandBuffersTests.cpp 408 de::MovePtr<Allocation> bufferAlloc;
428 bufferAlloc = m_allocator.allocate(getBufferMemoryRequirements(m_vkd, m_device, *buffer), MemoryRequirement::HostVisible);
429 VK_CHECK(m_vkd.bindBufferMemory(m_device, *buffer, bufferAlloc->getMemory(), bufferAlloc->getOffset()));
488 invalidateMappedMemoryRange(m_vkd, m_device, bufferAlloc->getMemory(), bufferAlloc->getOffset(), pixelDataSize);
489 tcu::copy(*resultLevel, tcu::ConstPixelBufferAccess(resultLevel->getFormat(), resultLevel->getSize(), bufferAlloc->getHostPtr()));
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageSizeTests.cpp 324 const Allocation& bufferAlloc = m_resultBuffer->getAllocation();
325 invalidateMappedMemoryRange(vk, device, bufferAlloc.getMemory(), bufferAlloc.getOffset(), m_resultBufferSizeBytes);
327 const tcu::IVec3 resultSize = readIVec3(bufferAlloc.getHostPtr());
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderExecutor.cpp     [all...]

Completed in 67 milliseconds