Home
last modified time | relevance | path

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

/external/deqp/external/vulkancts/modules/vulkan/geometry/
DvktGeometryInstancedRenderingTests.cpp364 …const UniquePtr<Allocation> vertexBufferAlloc (bindBuffer(vk, device, allocator, *vertexBuffer, … in draw() local
380 deMemcpy(vertexBufferAlloc->getHostPtr(), &perInstanceAttribute[0], (size_t)vertexBufferSize); in draw()
381 …flushMappedMemoryRange(vk, device, vertexBufferAlloc->getMemory(), vertexBufferAlloc->getOffset(),… in draw()
/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageTranscodingSupportTests.cpp342 const Allocation& vertexBufferAlloc = vertexBuffer->getAllocation(); in transcode() local
391 deMemcpy(vertexBufferAlloc.getHostPtr(), &vertexArray[0], vertexBufferSizeInBytes); in transcode()
392 …flushMappedMemoryRange(vk, device, vertexBufferAlloc.getMemory(), vertexBufferAlloc.getOffset(), v… in transcode()
592 const Allocation& vertexBufferAlloc = vertexBuffer->getAllocation(); in transcode() local
648 deMemcpy(vertexBufferAlloc.getHostPtr(), &vertexArray[0], vertexBufferSizeInBytes); in transcode()
649 …flushMappedMemoryRange(vk, device, vertexBufferAlloc.getMemory(), vertexBufferAlloc.getOffset(), v… in transcode()
DvktImageMutableTests.cpp1011 MovePtr<Allocation> vertexBufferAlloc; member
1328 …m_uDraw.vertexBufferAlloc = bindBuffer(m_vk, m_device, m_allocator, *m_uDraw.vertexBuffer, Mem… in uploadDraw()
1329 …deMemcpy(m_uDraw.vertexBufferAlloc->getHostPtr(), &vertices[0], static_cast<std::size_t>(vertexBuf… in uploadDraw()
1330 …flushMappedMemoryRange(m_vk, m_device, m_uDraw.vertexBufferAlloc->getMemory(), m_uDraw.vertexBuffe… in uploadDraw()
DvktImageCompressionTranscodingSupport.cpp1485 const Allocation& vertexBufferAlloc = m_vertexBuffer->getAllocation(); in prepareVertexBuffer() local
1486 deMemcpy(vertexBufferAlloc.getHostPtr(), &vertexArray[0], vertexBufferSizeInBytes); in prepareVertexBuffer()
1487 …flushMappedMemoryRange(vk, device, vertexBufferAlloc.getMemory(), vertexBufferAlloc.getOffset(), v… in prepareVertexBuffer()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineRenderToImageTests.cpp934 MovePtr<Allocation> vertexBufferAlloc; in testWithSizeReduction() local
962vertexBufferAlloc = bindBuffer(vki, vk, physDevice, device, *vertexBuffer, MemoryRequirement::Host… in testWithSizeReduction()
964 …deMemcpy(vertexBufferAlloc->getHostPtr(), &vertices[0], static_cast<std::size_t>(vertexBufferSize)… in testWithSizeReduction()
965 …flushMappedMemoryRange(vk, device, vertexBufferAlloc->getMemory(), vertexBufferAlloc->getOffset(),… in testWithSizeReduction()
1402 MovePtr<Allocation> vertexBufferAlloc; in testRenderToMipMaps() local
1429vertexBufferAlloc = bindBuffer(vki, vk, physDevice, device, *vertexBuffer, MemoryRequirement::Host… in testRenderToMipMaps()
1431 …deMemcpy(vertexBufferAlloc->getHostPtr(), &vertices[0], static_cast<std::size_t>(vertexBufferSize)… in testRenderToMipMaps()
1432 …flushMappedMemoryRange(vk, device, vertexBufferAlloc->getMemory(), vertexBufferAlloc->getOffset(),… in testRenderToMipMaps()
DvktPipelineMultisampleImageTests.cpp798 …const UniquePtr<Allocation> vertexBufferAlloc (bindBuffer(vk, device, allocator, *vertexBuffer, M… in renderMultisampledImage() local
801 …deMemcpy(vertexBufferAlloc->getHostPtr(), &vertices[0], static_cast<std::size_t>(vertexBufferSize)… in renderMultisampledImage()
802 …flushMappedMemoryRange(vk, device, vertexBufferAlloc->getMemory(), vertexBufferAlloc->getOffset(),… in renderMultisampledImage()
989 …const UniquePtr<Allocation> vertexBufferAlloc (bindBuffer(vk, device, allocator, *vertexBuffer, M… in test() local
992 …deMemcpy(vertexBufferAlloc->getHostPtr(), &vertices[0], static_cast<std::size_t>(vertexBufferSize)… in test()
993 …flushMappedMemoryRange(vk, device, vertexBufferAlloc->getMemory(), vertexBufferAlloc->getOffset(),… in test()
DvktPipelineVertexInputTests.cpp1050 …de::MovePtr<Allocation> vertexBufferAlloc = memAlloc.allocate(getBufferMemoryRequirements(vk, vkDe… in VertexInputInstance() local
1052 …_CHECK(vk.bindBufferMemory(vkDevice, *vertexBuffer, vertexBufferAlloc->getMemory(), vertexBufferAl… in VertexInputInstance()
1054 …writeVertexInputData((deUint8*)vertexBufferAlloc->getHostPtr(), bindingDescriptions[bindingNdx], b… in VertexInputInstance()
1055 …flushMappedMemoryRange(vk, vkDevice, vertexBufferAlloc->getMemory(), vertexBufferAlloc->getOffset(… in VertexInputInstance()
1058 m_vertexBufferAllocs.push_back(vertexBufferAlloc.release()); in VertexInputInstance()
DvktPipelineTimestampTests.cpp852 …de::MovePtr<Allocation> vertexBufferAlloc = memAlloc.allocate(getBufferMemoryRequirements(vk, vkDe… in createBufferAndBindMemory() local
854 …_CHECK(vk.bindBufferMemory(vkDevice, *vertexBuffer, vertexBufferAlloc->getMemory(), vertexBufferAl… in createBufferAndBindMemory()
857 *pAlloc = vertexBufferAlloc; in createBufferAndBindMemory()
/external/deqp/external/vulkancts/modules/vulkan/fragment_ops/
DvktFragmentOperationsEarlyFragmentTests.cpp628 …const UniquePtr<Allocation> vertexBufferAlloc (bindBuffer(vk, device, allocator, *vertexBuffer, … in iterate() local
631 tcu::Vec4* const pVertices = reinterpret_cast<tcu::Vec4*>(vertexBufferAlloc->getHostPtr()); in iterate()
641 …flushMappedMemoryRange(vk, device, vertexBufferAlloc->getMemory(), vertexBufferAlloc->getOffset(),… in iterate()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiCopiesAndBlittingTests.cpp2637 de::MovePtr<Allocation> vertexBufferAlloc; in ResolveImageToImage() local
2858vertexBufferAlloc = allocateBuffer(vki, vk, vkPhysDevice, vkDevice, *vertexBuffer, MemoryRequireme… in ResolveImageToImage()
2859 …_CHECK(vk.bindBufferMemory(vkDevice, *vertexBuffer, vertexBufferAlloc->getMemory(), vertexBufferAl… in ResolveImageToImage()
2862 deMemcpy(vertexBufferAlloc->getHostPtr(), vertices.data(), (size_t)vertexDataSize); in ResolveImageToImage()
2863 …flushMappedMemoryRange(vk, vkDevice, vertexBufferAlloc->getMemory(), vertexBufferAlloc->getOffset(… in ResolveImageToImage()