• Home
  • Raw
  • Download

Lines Matching refs:bufferAlloc

218 	de::MovePtr<Allocation>			bufferAlloc;  in readColorAttachment()  local
241bufferAlloc = allocator.allocate(getBufferMemoryRequirements(vk, device, *buffer), MemoryRequireme… in readColorAttachment()
242 …VK_CHECK(vk.bindBufferMemory(device, *buffer, bufferAlloc->getMemory(), bufferAlloc->getOffset())); in readColorAttachment()
259 invalidateAlloc(vk, device, *bufferAlloc); in readColorAttachment()
260 …nstPixelBufferAccess(resultLevel->getFormat(), resultLevel->getSize(), bufferAlloc->getHostPtr())); in readColorAttachment()
276 de::MovePtr<Allocation> bufferAlloc; in readDepthAttachment() local
322bufferAlloc = allocator.allocate(getBufferMemoryRequirements(vk, device, *buffer), MemoryRequireme… in readDepthAttachment()
323 …VK_CHECK(vk.bindBufferMemory(device, *buffer, bufferAlloc->getMemory(), bufferAlloc->getOffset())); in readDepthAttachment()
337 invalidateAlloc(vk, device, *bufferAlloc); in readDepthAttachment()
338 …vel, tcu::ConstPixelBufferAccess(bufferFormat, resultLevel->getSize(), bufferAlloc->getHostPtr())); in readDepthAttachment()
354 de::MovePtr<Allocation> bufferAlloc; in readStencilAttachment() local
380bufferAlloc = allocator.allocate(getBufferMemoryRequirements(vk, device, *buffer), MemoryRequireme… in readStencilAttachment()
381 …VK_CHECK(vk.bindBufferMemory(device, *buffer, bufferAlloc->getMemory(), bufferAlloc->getOffset())); in readStencilAttachment()
395 invalidateAlloc(vk, device, *bufferAlloc); in readStencilAttachment()
396 …vel, tcu::ConstPixelBufferAccess(bufferFormat, resultLevel->getSize(), bufferAlloc->getHostPtr())); in readStencilAttachment()
412 de::MovePtr<Allocation> bufferAlloc; in uploadTestTextureInternal() local
444bufferAlloc = allocator.allocate(getBufferMemoryRequirements(vk, device, *buffer), MemoryRequireme… in uploadTestTextureInternal()
445 …VK_CHECK(vk.bindBufferMemory(device, *buffer, bufferAlloc->getMemory(), bufferAlloc->getOffset())); in uploadTestTextureInternal()
450 srcTexture.write(reinterpret_cast<deUint8*>(bufferAlloc->getHostPtr())); in uploadTestTextureInternal()
456 srcStencilTexture->write(reinterpret_cast<deUint8*>(bufferAlloc->getHostPtr()) + stencilOffset); in uploadTestTextureInternal()
468 flushAlloc(vk, device, *bufferAlloc); in uploadTestTextureInternal()
508 de::MovePtr<Allocation> bufferAlloc; in uploadTestTextureInternalSparse() local
536bufferAlloc = allocator.allocate(getBufferMemoryRequirements(vk, device, *buffer), MemoryRequireme… in uploadTestTextureInternalSparse()
538 …VK_CHECK(vk.bindBufferMemory(device, *buffer, bufferAlloc->getMemory(), bufferAlloc->getOffset())); in uploadTestTextureInternalSparse()
543 srcTexture.write(reinterpret_cast<deUint8*>(bufferAlloc->getHostPtr())); in uploadTestTextureInternalSparse()
549 srcStencilTexture->write(reinterpret_cast<deUint8*>(bufferAlloc->getHostPtr()) + stencilOffset); in uploadTestTextureInternalSparse()
561 flushAlloc(vk, device, *bufferAlloc); in uploadTestTextureInternalSparse()